Add some update

Add a TODO for the ideas
This commit is contained in:
Sébastien ANDRE
2023-05-19 12:24:29 +02:00
parent e41e7a1fe4
commit 7856989866
12 changed files with 197 additions and 30 deletions

View File

@@ -8,6 +8,8 @@
public string Name { get; set; }
public string InTunnel { get; set; }
#endregion Public Properties
}
}

View File

@@ -0,0 +1,21 @@
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
}
}