Rename folder from Shogi.Sockets to Shogi.Api
This commit is contained in:
15
Shogi.Api/Repositories/CouchModels/CouchCreatedResult.cs
Normal file
15
Shogi.Api/Repositories/CouchModels/CouchCreatedResult.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace Shogi.Api.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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user