using Hydro; namespace PBS.WinFrmUI.Hydro { /// /// /// public class QuickModelingViewModel { /// /// /// public QuickModelingViewModel() { } #region 初始化 /// /// 成套设备列表 /// public List AssetsPackageList { get; set; } #endregion #region 基本信息 /// /// 场所 /// public Vmo.PlaceVmo Place { get; set; } /// /// 设施 /// public Vmo.FacilityVmo Facility { get; set; } /// /// 模板信息 /// public Template Template { get; set; } /// /// 地图点 /// public Yw.Model.Map.Marker Marker { get; set; } /// /// /// public Yw.Model.Map.Point SouthWest { get; set; } /// /// /// public Yw.Model.Map.Point NorthEast { get; set; } /// /// /// public string TempBackgroundImageUrl = AppDomain.CurrentDomain.BaseDirectory + "Data\\temp.png"; /// /// /// public double BackgroundWidth; /// /// /// public double BackgroundHeight; /// /// /// public double Zoom; /// /// /// public bool IsCaptureImage { get; set; } #endregion } }