2023-08-10 08:47:35 +00:00
|
|
|
|
using CouchDB.Driver;
|
|
|
|
|
using CouchDB.Driver.Options;
|
|
|
|
|
using Server.DB.Documents;
|
|
|
|
|
|
|
|
|
|
namespace Server.DB;
|
|
|
|
|
|
|
|
|
|
public class WonderkingContext : CouchContext
|
|
|
|
|
{
|
|
|
|
|
public CouchDatabase<Account> Accounts { get; set; }
|
|
|
|
|
|
|
|
|
|
public WonderkingContext(CouchOptions<WonderkingContext> options) : base(options)
|
|
|
|
|
{
|
|
|
|
|
}
|
2023-08-11 09:31:30 +00:00
|
|
|
|
}
|