using System.Xml.Serialization; namespace XSDVisualiser.Core; /// /// Root of the parsed XSD representation. /// [XmlRoot("SchemaModel")] public class SchemaModel { [XmlAttribute] public string? TargetNamespace { get; set; } [XmlArray("RootElements")] [XmlArrayItem("Element")] public List RootElements { get; set; } = new(); }