before deleting Rules

This commit is contained in:
2021-05-08 10:26:04 -05:00
parent 05a9c71499
commit f8f779e84c
80 changed files with 1109 additions and 832 deletions

16
CouchDB/CouchDocument.cs Normal file
View File

@@ -0,0 +1,16 @@
namespace CouchDB
{
public class CouchDocument<T>
{
public readonly string _id;
public readonly string type;
public readonly T model;
public CouchDocument(string id, T model)
{
_id = id;
this.model = model;
type = nameof(T);
}
}
}