public SGFPropertyInfo(string id, string description, SGFPropertyType propertyType, SGFPropertyValueType propertyValueType, bool list, string ff) { ID = id; Description = description; PropertyType = propertyType; PropertyValueType = propertyValueType; List = list; FF = ff; }
protected void Add(string id, string ff, SGFPropertyType propertyType, SGFPropertyValueType propertyValueType, bool list, string description) { Dictionary.Add(id, new SGFPropertyInfo(id, description, propertyType, propertyValueType, list, ff)); }