24 lines
481 B
C#
24 lines
481 B
C#
using System;
|
|
|
|
namespace skydiveLogs_api.Domain
|
|
{
|
|
public class TunnelFlight
|
|
{
|
|
#region Public Properties
|
|
public int Id { get; set; }
|
|
|
|
public Tunnel Tunnel { get; set; }
|
|
|
|
public JumpType JumpType { get; set; }
|
|
|
|
public int NbMinutes { get; set; }
|
|
|
|
public string Notes { get; set; }
|
|
|
|
public DateTime FlightDate { get; set; }
|
|
|
|
public User User { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |