package com.plexobject.aom;

public class PropertyType {

    private String propertyName;
    private String type;

    public PropertyType(String propertyName, String type) {
        this.propertyName = propertyName;
        this.type = type;
    }

    public String getPropertyName() {
        return propertyName;
    }

    public String getType() {
        return type;
    }
    //... other methods
}
