Files
Shogi/Gameboard.ShogiUI.Sockets/Repositories/CouchModels/CouchCreatedResult.cs
2021-05-08 10:26:04 -05:00

16 lines
308 B
C#

namespace Gameboard.ShogiUI.Sockets.Repositories.CouchModels
{
public class CouchCreateResult
{
public string Id { get; set; }
public bool Ok { get; set; }
public string Rev { get; set; }
public CouchCreateResult()
{
Id = string.Empty;
Rev = string.Empty;
}
}
}