17 using erminas.SmartAPI.CMS.Project;
19 namespace erminas.SmartAPI.CMS
21 internal interface IAttributeConvertBase
23 bool IsReadOnly {
get; }
26 internal interface IAttributeConverter<T> : IAttributeConvertBase
28 T ConvertFrom(
IProjectObject parent, XmlElement element, RedDotAttribute attribute);
29 void WriteTo(
IProjectObject parent, IXmlReadWriteWrapper element, RedDotAttribute attribute, T value);