1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| using HStation.Dto;
|
| namespace HStation.WinFrmUI.Xhs.Core
| {
| public class XhsProjectModelViewModel : XhsProjectDto
| {
| public XhsProjectModelViewModel(XhsProjectDto rhs)
| {
| this.Name = rhs.Name;
| this.TagName = rhs.TagName;
| this.SortCode = rhs.SortCode;
| this.Description = rhs.Description;
| this.Flags = rhs.Flags;
| }
| }
| }
|
|