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