duheng
2025-04-18 d2b91c9d98f38ccbd657f2adff1473aba29f66b2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace PBS.WinFrmUI
{
    public class PlaceSelectViewModel
    {
        public PlaceSelectViewModel()
        { }
 
        public PlaceSelectViewModel(PBS.Vmo.PlaceVmo rhs)
        {
            this.ID = rhs.ID;
            this.ParentID = rhs.RegionID;
            this.Name = rhs.Name;
        }
 
        public long ID { get; set; }
 
        public long ParentID { get; set; }
        public string Name { get; set; }
    }
}