| | |
| | | { |
| | | public event PropertyChangedEventHandler PropertyChanged; |
| | | |
| | | public string Ext { set; get; } |
| | | |
| | | private int _id; |
| | | |
| | | private string _filePath; |
| | | |
| | | private string _status; |
| | | |
| | | public ViewData() |
| | | { |
| | |
| | | } |
| | | } |
| | | |
| | | private string _filePath; |
| | | |
| | | public string FilePath |
| | | { |
| | | set |
| | |
| | | return _filePath; |
| | | } |
| | | } |
| | | |
| | | private string _sizes; |
| | | |
| | | public string Sizes |
| | | { |
| | | set |
| | | { |
| | | if (_sizes != value) |
| | | { |
| | | _sizes = value; |
| | | ChangProperty("Sizes"); |
| | | } |
| | | } |
| | | get |
| | | { |
| | | return _sizes; |
| | | } |
| | | } |
| | | |
| | | private string _status; |
| | | |
| | | public string Status |
| | | { |
| | |
| | | PropertyChanged(this, new PropertyChangedEventArgs(propName)); |
| | | } |
| | | } |
| | | |
| | | public SysMeta Meta { set; get; } |
| | | } |
| | | } |