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