mirror of
https://github.com/azaion/missions.git
synced 2026-06-21 14:21:07 +00:00
2840ccb9b6
ci/woodpecker/push/build-arm Pipeline was successful
This commit transitions the project from Azaion.Flights to Azaion.Missions, updating namespaces, DTOs, services, and database entities accordingly. The Docker configuration and entry points have been modified to reflect the new project structure. Additionally, the README and documentation have been updated to clarify the ongoing renaming process and its implications. All references to flights have been replaced with missions, ensuring consistency across the codebase.
15 lines
269 B
C#
15 lines
269 B
C#
using LinqToDB.Mapping;
|
|
|
|
namespace Azaion.Missions.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; }
|
|
}
|