using Azaion.Common.DTO; using LinqToDB; using LinqToDB.Data; namespace Azaion.Common.Database; public class AnnotationsDb(DataOptions dataOptions) : DataConnection(dataOptions) { public ITable Annotations => this.GetTable(); public ITable AnnotationsQueue => this.GetTable(); public ITable Detections => this.GetTable(); public ITable QueueOffsets => this.GetTable(); }