using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Yw.WinFrmUI { /// /// /// public interface ILinkPropertyViewModel { // // 摘要: // 开始节点编码 string StartCode { get; set; } // // 摘要: // 结束节点编码 string EndCode { get; set; } // // 摘要: // 管段状态 string LinkStatus { get; set; } } }