public MetaDataObject(string id, string displayName, object value = null, MetaDataObjectType fieldType = MetaDataObjectType.String, List <string> selectorValues = null) { this.ID = id; this.DisplayName = displayName; this.FieldType = fieldType; this.SelectorValues = selectorValues; this.Value = value; }
public MetaDataObjectBuilder(string id, string displayName, MetaDataObjectType type = MetaDataObjectType.String, List <string> selectValues = null) { template = new MetaDataObject(id, displayName, type, selectorValues: selectValues); }
public void SetFieldType(MetaDataObjectType type) { FieldType = type; }