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.

31 lines
926 B
C#

1 month ago
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
/// <summary>
/// 渲染样式
/// </summary>
public class WellRenderStyle
{
[XmlAttribute("Type")]
public string Type { get; set; }
[XmlAttribute("LeftSpace")]
public double LeftSpace { get; set; }
[XmlAttribute("RightSpace")]
public double RightSpace { get; set; }
[XmlAttribute("ShowDepthText")]
public bool ShowDepthText { 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
}