From 775f0015321f91aa5be3aca079e289e89d4719f5 Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Tue, 10 Nov 2020 11:06:48 +0200 Subject: DataStore editing.. --- .../DataStoreCollectionModel.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Software/Visual_Studio/Tango.DataStore.Editing/DataStoreCollectionModel.cs (limited to 'Software/Visual_Studio/Tango.DataStore.Editing/DataStoreCollectionModel.cs') 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 Items { get; set; } + + public DataStoreCollectionModel() + { + Items = new ObservableCollection(); + } + } +} -- cgit v1.3.1