14 lines
301 B
C#
14 lines
301 B
C#
namespace Server.DB;
|
|
|
|
using CouchDB.Driver;
|
|
using CouchDB.Driver.Options;
|
|
using Documents;
|
|
|
|
public class WonderkingContext : CouchContext
|
|
{
|
|
public WonderkingContext(CouchOptions<WonderkingContext> options) : base(options)
|
|
{
|
|
}
|
|
|
|
public CouchDatabase<Account> Accounts { get; set; }
|
|
}
|