diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-11-10 11:06:48 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-11-10 11:06:48 +0200 |
| commit | 775f0015321f91aa5be3aca079e289e89d4719f5 (patch) | |
| tree | c1fe9860cc2b9a899f6ad82a24a1208f2e27f62a /Software/Visual_Studio/Tango.DataStore.Remote/RemoteDataStoreCollection.cs | |
| parent | d6db3244c15e3937d339064da0a5c7186f32daa1 (diff) | |
| download | Tango-775f0015321f91aa5be3aca079e289e89d4719f5.tar.gz Tango-775f0015321f91aa5be3aca079e289e89d4719f5.zip | |
DataStore editing..
Diffstat (limited to 'Software/Visual_Studio/Tango.DataStore.Remote/RemoteDataStoreCollection.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.DataStore.Remote/RemoteDataStoreCollection.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.DataStore.Remote/RemoteDataStoreCollection.cs b/Software/Visual_Studio/Tango.DataStore.Remote/RemoteDataStoreCollection.cs new file mode 100644 index 000000000..e4453fafc --- /dev/null +++ b/Software/Visual_Studio/Tango.DataStore.Remote/RemoteDataStoreCollection.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.DataStore.Remote +{ + public class RemoteDataStoreCollection + { + public String Name { get; set; } + public List<RemoteDataStoreItem> Items { get; set; } + + public RemoteDataStoreCollection() + { + Items = new List<RemoteDataStoreItem>(); + } + } +} |
