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