summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/att/ecomp/dcae/ci/entities/composition/rightMenu/element/Service.java
blob: 7001293cf2b6ea6f27ba5ec6aa941d7bc6792910 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.att.ecomp.dcae.ci.entities.composition.rightMenu.element;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class Service {

    @SerializedName("element")
    @Expose
    private ItemsElement element;

    public ItemsElement getElement() {
        return element;
    }

    public void setElement(ItemsElement element) {
        this.element = element;
    }

}