You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.1 KiB
C#

using System.Xml.Serialization;
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 WellLayerStyle
{
[XmlAttribute("BackColor")]
public string BackColor { get; set; }
[XmlAttribute("BorderColor")]
public string BorderColor { get; set; }
[XmlAttribute("BorderWidth")]
public double BorderWidth { get; set; }
[XmlAttribute("TextAlign")]
public string TextAlign { get; set; }
[XmlAttribute("TextColor")]
public string TextColor { get; set; }
[XmlAttribute("TextSize")]
public float TextSize { get; set; }
[XmlAttribute("TextFace")]
public string TextFace { 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
}