fix incorrect dependency
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / openecomp-sdc-common-rest / src / main / java / org / openecomp / sdcrests / common / types / VersionDto.java
1 package org.openecomp.sdcrests.common.types;
2
3 /**
4  * Created by SVISHNEV on 3/5/2017.
5  */
6 public class VersionDto {
7     String id;
8     String label;
9
10     public VersionDto(){
11
12     }
13
14     public VersionDto(String id, String label) {
15         this.id = id;
16         this.label = label;
17     }
18
19     public String getId() {
20         return id;
21     }
22
23     public void setId(String id) {
24         this.id = id;
25     }
26
27     public String getLabel() {
28         return label;
29     }
30
31     public void setLabel(String label) {
32         this.label = label;
33     }
34 }