using System.Xml.Serialization; using GeoSigma.SigmaDrawerStyle; namespace GeoSigma.SigmaDrawerElement { #pragma warning disable SA1402 // File may only contain a single type #pragma warning disable SA1600 // Elements should be documented #pragma warning disable SA1649 // File name should match first type name public class WellTrackTitle { [XmlAttribute("Align")] public string Align { get; set; } [XmlElement("Font")] public WellFontEx Font { get; set; } } #pragma warning restore SA1649 // File name should match first type name #pragma warning restore SA1600 // Elements should be documented #pragma warning restore SA1402 // File may only contain a single type }