namespace HStation.WinFrmUI.Basic
|
{
|
public class SysPropChoiceViewModel
|
{
|
public SysPropChoiceViewModel()
|
{ }
|
|
public SysPropChoiceViewModel(Yw.Vmo.SysPropChoiceVmo rhs)
|
{
|
this.PropID = rhs.PropID;
|
this.ID = rhs.ID;
|
this.Choice = rhs.Choice;
|
this.Name = rhs.Name;
|
this.Description = rhs.Description;
|
this.SortCode = rhs.SortCode;
|
}
|
|
public long ID { get; set; }
|
|
public long PropID { get; set; }
|
|
public string Name { get; set; }
|
|
public string Choice { get; set; }
|
|
public int SortCode { get; set; }
|
|
public string Description { get; set; }
|
}
|
}
|