mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 18:06:39 +00:00
queue + local sqlite WIP
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
using Azaion.Common.DTO;
|
||||
using LinqToDB;
|
||||
using LinqToDB.Data;
|
||||
|
||||
namespace Azaion.Common.Database;
|
||||
|
||||
public class AnnotationsDb(DataOptions dataOptions) : DataConnection(dataOptions)
|
||||
{
|
||||
public ITable<Annotation> Annotations => this.GetTable<Annotation>();
|
||||
public ITable<AnnotationName> AnnotationsQueue => this.GetTable<AnnotationName>();
|
||||
}
|
||||
Reference in New Issue
Block a user