using Yw.Dto;
|
|
namespace HStation.WinFrmUI.Basic
|
{
|
public class SysPropChoiceViewModel : Yw.Dto.SysPropChoiceDto
|
{
|
public SysPropChoiceViewModel(SysPropChoiceDto 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;
|
}
|
}
|
}
|