18 lines
322 B
C#
18 lines
322 B
C#
using System;
|
|
|
|
namespace skydiveLogs_api.DataContract
|
|
{
|
|
public class TunnelFlightReq
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int TunnelId { get; set; }
|
|
|
|
public int NbMinutes { get; set; }
|
|
|
|
public string Notes { get; set; }
|
|
|
|
public DateTime FlightDate { get; set; }
|
|
}
|
|
}
|