Rename folder from Shogi.Sockets to Shogi.Api
This commit is contained in:
16
Shogi.Api/Repositories/CouchModels/CouchFindResult.cs
Normal file
16
Shogi.Api/Repositories/CouchModels/CouchFindResult.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
|
||||
namespace Shogi.Api.Repositories.CouchModels
|
||||
{
|
||||
internal class CouchFindResult<T>
|
||||
{
|
||||
public T[] docs;
|
||||
public string warning;
|
||||
|
||||
public CouchFindResult()
|
||||
{
|
||||
docs = Array.Empty<T>();
|
||||
warning = "";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user