mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 21:36:30 +00:00
8b94837f18
fixes add visual validation border and validate functionality
13 lines
495 B
C#
13 lines
495 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>();
|
|
public ITable<Detection> Detections => this.GetTable<Detection>();
|
|
public ITable<QueueOffset> QueueOffsets => this.GetTable<QueueOffset>();
|
|
} |