14 lines
310 B
C#
14 lines
310 B
C#
|
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)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|