aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.DataStore.Remote/RemoteDataStoreCollection.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.DataStore.Remote/RemoteDataStoreCollection.cs')
-rw-r--r--Software/Visual_Studio/Tango.DataStore.Remote/RemoteDataStoreCollection.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/Software/Visual_Studio/Tango.DataStore.Remote/RemoteDataStoreCollection.cs b/Software/Visual_Studio/Tango.DataStore.Remote/RemoteDataStoreCollection.cs
deleted file mode 100644
index e4453fafc..000000000
--- a/Software/Visual_Studio/Tango.DataStore.Remote/RemoteDataStoreCollection.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-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>();
- }
- }
-}