diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.DataStore.Editing/DataStoreCollectionModel.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.DataStore.Editing/DataStoreCollectionModel.cs | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/Software/Visual_Studio/Tango.DataStore.Editing/DataStoreCollectionModel.cs b/Software/Visual_Studio/Tango.DataStore.Editing/DataStoreCollectionModel.cs deleted file mode 100644 index 3e58aa4b1..000000000 --- a/Software/Visual_Studio/Tango.DataStore.Editing/DataStoreCollectionModel.cs +++ /dev/null @@ -1,29 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Collections.ObjectModel; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Tango.Core; - -namespace Tango.DataStore.Editing -{ - public class DataStoreCollectionModel : ExtendedObject - { - public String Name { get; set; } - public ObservableCollection<DataStoreItemModel> Items { get; set; } - public bool IsDeleted { get; set; } - - private bool _isSelected; - public bool IsSelected - { - get { return _isSelected; } - set { _isSelected = value; RaisePropertyChangedAuto(); Items.ToList().ForEach(x => x.IsSelected = value); } - } - - public DataStoreCollectionModel() - { - Items = new ObservableCollection<DataStoreItemModel>(); - } - } -} |
