package com.bagri.tools.vvm.model; public class Property { private String propertyName; private String propertyValue; public Property(String propertyName, String propertyValue) { this.propertyName = propertyName; this.propertyValue = propertyValue; } public String getPropertyName() { return propertyName; } public void setPropertyName(String propertyName) { this.propertyName = propertyName; } public String getPropertyValue() { return propertyValue; } public void setPropertyValue(String propertyValue) { this.propertyValue = propertyValue; } }