package com.plexobject.aom;

public class Property {

    private PropertyType propertyType;
    private Object value;

    public Property(PropertyType propertyType, Object value) {
        this.propertyType = propertyType;
        this.value = value;
    }

    public PropertyType getPropertyType() {
        return propertyType;
    }

    public Object getValue() {
        return value;
    }
    //... other methods
}
