diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-10-23 03:58:38 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-10-23 03:58:38 +0300 |
| commit | 2d803e9410cd383d8e66c300f86fe0f7374c81ea (patch) | |
| tree | 7ac7ac109fd8cafd0752673e826123475b9f0e13 /Software/Visual_Studio/Tango.DataStore.Remote/RemoteDataStoreGetAllResponse.cs | |
| parent | 8d2b13aaa70bc6a8f521df4eab165caf078c33fa (diff) | |
| download | Tango-2d803e9410cd383d8e66c300f86fe0f7374c81ea.tar.gz Tango-2d803e9410cd383d8e66c300f86fe0f7374c81ea.zip | |
Improvements to DataStore Remote.
Diffstat (limited to 'Software/Visual_Studio/Tango.DataStore.Remote/RemoteDataStoreGetAllResponse.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.DataStore.Remote/RemoteDataStoreGetAllResponse.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/Tango.DataStore.Remote/RemoteDataStoreGetAllResponse.cs b/Software/Visual_Studio/Tango.DataStore.Remote/RemoteDataStoreGetAllResponse.cs index 98848924c..2d9e0f527 100644 --- a/Software/Visual_Studio/Tango.DataStore.Remote/RemoteDataStoreGetAllResponse.cs +++ b/Software/Visual_Studio/Tango.DataStore.Remote/RemoteDataStoreGetAllResponse.cs @@ -8,11 +8,11 @@ namespace Tango.DataStore.Remote { public class RemoteDataStoreGetAllResponse { - public List<IDataStoreItem> Items { get; set; } + public List<RemoteDataStoreItem> Items { get; set; } public RemoteDataStoreGetAllResponse() { - Items = new List<IDataStoreItem>(); + Items = new List<RemoteDataStoreItem>(); } } } |
