aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.DataStore.Editing/DataStoreCollectionModel.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-11-10 11:06:48 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-11-10 11:06:48 +0200
commit775f0015321f91aa5be3aca079e289e89d4719f5 (patch)
treec1fe9860cc2b9a899f6ad82a24a1208f2e27f62a /Software/Visual_Studio/Tango.DataStore.Editing/DataStoreCollectionModel.cs
parentd6db3244c15e3937d339064da0a5c7186f32daa1 (diff)
downloadTango-775f0015321f91aa5be3aca079e289e89d4719f5.tar.gz
Tango-775f0015321f91aa5be3aca079e289e89d4719f5.zip
DataStore editing..
Diffstat (limited to 'Software/Visual_Studio/Tango.DataStore.Editing/DataStoreCollectionModel.cs')
-rw-r--r--Software/Visual_Studio/Tango.DataStore.Editing/DataStoreCollectionModel.cs21
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>();
+ }
+ }
+}