You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.2 KiB
47 lines
1.2 KiB
using System; |
|
using System.Collections.Generic; |
|
using System.ComponentModel; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
|
|
namespace Kingo.Plugin.MapView.Model |
|
{ |
|
public class HRDataPath : INotifyPropertyChanged |
|
{ |
|
//序号 |
|
private int _ID; |
|
public int ID |
|
{ |
|
get { return _ID; } |
|
set |
|
{ |
|
_ID = value; |
|
this.PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("ID")); |
|
} |
|
} |
|
//划入数据路径 |
|
private string _HRPath; |
|
public string HRPath |
|
{ |
|
get { return _HRPath; } |
|
set |
|
{ |
|
_HRPath = value; |
|
this.PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("HRPath")); |
|
} |
|
} |
|
//划入数据的行政区代码 |
|
private string _HRCode; |
|
public string HRCode |
|
{ |
|
get { return _HRCode; } |
|
set |
|
{ |
|
_HRCode = value; |
|
this.PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("HRCode")); |
|
} |
|
} |
|
public event PropertyChangedEventHandler PropertyChanged; |
|
} |
|
}
|
|
|