Merge automation from ECOMP's repository
[vid.git] / vid-automation / src / test / java / org / onap / vid / model / mso / RelatedToProperty.java
1 package org.onap.vid.model.mso;
2
3
4 public class RelatedToProperty {
5
6         public String getPropertyKey() {
7                 return propertyKey;
8         }
9
10
11         public void setPropertyKey(String propertyKey) {
12                 this.propertyKey = propertyKey;
13         }
14
15
16         public String getPropertyValue() {
17                 return propertyValue;
18         }
19
20
21         public void setPropertyValue(String propertyValue) {
22                 this.propertyValue = propertyValue;
23         }
24
25
26         public String propertyKey;
27         
28         
29         public String propertyValue;
30
31 }