namespace Yw.WinFrmUI.HydroW3d { /// /// 管段 /// public class LinkViewModel : VisualViewModel { /// /// /// public LinkViewModel() { } /// /// /// public LinkViewModel(LinkViewModel rhs) : base(rhs) { this.StartId = rhs.StartId; this.EndId = rhs.EndId; } /// /// 开始id /// [JsonProperty("StartId", NullValueHandling = NullValueHandling.Ignore)] public string StartId { get; set; } /// /// 结束id /// [JsonProperty("EndId", NullValueHandling = NullValueHandling.Ignore)] public string EndId { get; set; } } }