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.

23 lines
489 B
C#

using System.Xml.Serialization;
namespace GeoSigma.SigmaDrawerElement
{
/// <summary>
/// 不知道干嘛的
/// </summary>
public class WellTrackData
{
/// <summary>
/// 引用?
/// </summary>
[XmlAttribute("Ref")]
public string Ref { get; set; }
[XmlAttribute("RefTableId")]
public string RefTableId { get; set; }
[XmlAttribute("RefColId")]
public string RefColId { get; set; }
}
}