aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.DataStore.Remote/RemoteDataStorePutRequest.cs
blob: 6ea13bf6b7d8c3fa0205a66f904fd500efc9c807 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.DataStore.Remote
{
    public class RemoteDataStorePutRequest
    {
        public String Collection { get; set; }
        public DataType DataType { get; set; }
        public String Key { get; set; }
        public Object Value { get; set; }
    }
}