<PackageReference Include="Castle.Core" Version="3.0.0.2001" />

XmlMetadata

public class XmlMetadata
using System; using System.Collections.Generic; using System.Xml.Serialization; namespace Castle.Components.DictionaryAdapter { public class XmlMetadata { public Type Type { get; set; } public bool? Qualified { get; set; } public bool? IsNullable { get; set; } public XmlTypeAttribute XmlType { get; set; } public XmlRootAttribute XmlRoot { get; set; } public IEnumerable<Type> XmlIncludes { get; set; } public XmlMetadata(Type type, bool? qualified, bool? isNullable, XmlTypeAttribute xmlType, XmlRootAttribute xmlRoot, IEnumerable<Type> xmlIncludes) { Type = type; Qualified = qualified; IsNullable = isNullable; XmlType = xmlType; XmlRoot = xmlRoot; XmlIncludes = xmlIncludes; } } }