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