using System.Xml.Serialization; namespace ScriptNET.Runtime.Configuration { /// /// Represents single Setting Item node in script configuration /// public class SettingXml { /// /// Unique name of the item /// [XmlAttribute(ConfigSchema.Id)] public string Name { get; set; } /// /// String value /// [XmlAttribute(ConfigSchema.Value)] public string Value { get; set; } /// /// Type name of the converter /// [XmlAttribute(ConfigSchema.Converter)] public string Converter { get; set; } public SettingXml() { } } }