/
aprogrammer
/
yessql
Обзор
Документация
Войти
/
aprogrammer
/
yessql
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
beta13
src/YesSql.Storage.Cache/CacheDocument.cs
18 строк
489 B
Sebastien Ros
Adding YesSql.Storage.Cache
13 фев 2016, 03:01
13 фев 2016, 03:01
0c0ee4b
Код
Авторство
О чём код?
namespace YesSql.Storage.Cache { /// <summary> /// Represents a document as stored with an <see cref="CacheDocumentStorage"/> instance /// </summary> public class CacheDocument { /// <summary> /// The unique identifier of the document. /// </summary> public int Id { get; set; } /// <summary> /// the serialized JSON content of the document. /// </summary> public string Content { get; set; } } }