namespace Yw.WinFrmUI { /// /// /// public class HydroWorkingCheckedListItemViewModel { /// /// /// public HydroWorkingCheckedListItemViewModel() { } /// /// /// public HydroWorkingCheckedListItemViewModel(Yw.Vmo.HydroWorkingVmo rhs) { this.Id = rhs.ID.ToString(); this.Name = rhs.Name; this.Checked = true; this.SortCode = rhs.SortCode; this.Description = rhs.Description; this.Vmo = rhs; } /// /// Id /// public string Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 选择 /// public bool Checked { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// /// public Yw.Vmo.HydroWorkingVmo Vmo { get; set; } } }