mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 13:26:30 +00:00
11 lines
347 B
C#
11 lines
347 B
C#
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>();
|
|
} |