blob: 6bcb97d17564dc5b38a8d2ccf95fbf202c1a2aa0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.DataStore.EF
{
public class EFDataStoreItem : IDataStoreItem
{
public string Guid { get; set; }
public string Key { get; set; }
public DataType Type { get; set; }
public object Value { get; set; }
public DateTime Date { get; set; }
public bool IsSynchronized { get; set; }
public EFDataStoreItem()
{
Guid = System.Guid.NewGuid().ToString();
}
public override string ToString()
{
return DataStoreHelper.FormatDataStoreItem(this);
}
}
}
|