lixiaojun
2024-07-23 ec9bc16c81d897549568d826047da0189b8e85a3
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;
        }
    }
}