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 } }