namespace PBS.WinFrmUI { /// /// /// public class HomePbsProjectTreeViewModel { /// /// /// public HomePbsProjectTreeViewModel() { } /// /// /// public HomePbsProjectTreeViewModel(Vmo.PlaceVmo rhs) { this.ID = rhs.ID; this.Name = rhs.Name; this.SortCode = rhs.SortCode; this.Description = rhs.Description; this.Project = rhs; } /// /// UserID /// public long ID { get; set; } /// /// ParentID /// public long ParentID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// 项目 /// public Vmo.PlaceVmo Project { get; set; } } }