diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.DataStore.Editing/DataStoreCollectionModel.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.DataStore.Editing/DataStoreCollectionModel.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.DataStore.Editing/DataStoreCollectionModel.cs b/Software/Visual_Studio/Tango.DataStore.Editing/DataStoreCollectionModel.cs new file mode 100644 index 000000000..a5c9ba4a7 --- /dev/null +++ b/Software/Visual_Studio/Tango.DataStore.Editing/DataStoreCollectionModel.cs @@ -0,0 +1,21 @@ +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 DataStoreCollectionModel() + { + Items = new ObservableCollection<DataStoreItemModel>(); + } + } +} |
