continuity/Server/DB/WonderkingContext.cs

15 lines
301 B
C#
Raw Normal View History

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