mirror of
https://github.com/azaion/flights.git
synced 2026-04-22 08:16:31 +00:00
0625cd4157
Made-with: Cursor
15 lines
279 B
C#
15 lines
279 B
C#
using LinqToDB.Mapping;
|
|
|
|
namespace Azaion.Flights.Database.Entities;
|
|
|
|
[Table("detection")]
|
|
public class Detection
|
|
{
|
|
[PrimaryKey]
|
|
[Column("id")]
|
|
public Guid Id { get; set; }
|
|
|
|
[Column("annotation_id")]
|
|
public string AnnotationId { get; set; } = string.Empty;
|
|
}
|