mirror of
https://github.com/azaion/flights.git
synced 2026-04-22 21:56:32 +00:00
0625cd4157
Made-with: Cursor
15 lines
268 B
C#
15 lines
268 B
C#
using LinqToDB.Mapping;
|
|
|
|
namespace Azaion.Flights.Database.Entities;
|
|
|
|
[Table("media")]
|
|
public class Media
|
|
{
|
|
[PrimaryKey]
|
|
[Column("id")]
|
|
public string Id { get; set; } = string.Empty;
|
|
|
|
[Column("waypoint_id")]
|
|
public Guid? WaypointId { get; set; }
|
|
}
|