using System.Xml.Serialization; namespace ScriptNET.Runtime.Configuration { /// /// Represents single Type node in script configuration /// public class TypeXml { /// /// Friendly name of the type /// [XmlAttribute(ConfigSchema.Alias)] public string Alias { get; set; } /// /// Fully qualified name of the type /// [XmlAttribute(ConfigSchema.Name)] public string QualifiedName { get; set; } public TypeXml() { } } }