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; } } }