Files
SkydiveLogs/Back/skydiveLogs-api.Domain/TunnelFlight.cs
Sébastien ANDRE 7856989866 Add some update
Add a TODO for the ideas
2023-05-19 12:24:29 +02:00

21 lines
419 B
C#

using System;
using System.Collections.Generic;
namespace skydiveLogs_api.Domain
{
public class TunnelFlight
{
#region Public Properties
public int Id { get; set; }
public Tunnel Tunnel { get; set; }
public int NbMinutes { get; set; }
public string Notes { get; set; }
public DateTime FlightDate { get; set; }
#endregion Public Properties
}
}