mirror of
https://github.com/azaion/flights.git
synced 2026-04-22 09:36:31 +00:00
Initial commit
Made-with: Cursor
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user