public ConfigPropertyAttribute(string key, ConfigPropertyType type) { Key = key; Type = type; }
internal ConfigProperty(string name, object value, ConfigPropertyType type) { Name = name; Value = value; Type = type; }
public ConfigPropertyAttribute(ConfigPropertyType type) { Type = type; }