| | |
| | | |
| | | namespace HStation.WinFrmUI.Basic |
| | | { |
| | | public class SysPropChoiceViewModel : Yw.Dto.SysPropChoiceDto |
| | | public class SysPropChoiceViewModel |
| | | { |
| | | public SysPropChoiceViewModel() |
| | | { } |
| | | |
| | | public SysPropChoiceViewModel(SysPropChoiceDto rhs) |
| | | public SysPropChoiceViewModel(Yw.Vmo.SysPropChoice rhs) |
| | | { |
| | | this.PropID = rhs.PropID; |
| | | this.ID = rhs.ID; |
| | |
| | | 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; } |
| | | } |
| | | } |