19 lines
367 B
C#
19 lines
367 B
C#
using System;
|
|
|
|
namespace skydiveLogs_api.DataContract
|
|
{
|
|
public class TunnelFlightResp
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int TunnelId { get; set; }
|
|
|
|
public int JumpTypeId { get; set; }
|
|
|
|
public int NbMinutes { get; set; }
|
|
|
|
public string Notes { get; set; }
|
|
|
|
public DateTime FlightDate { get; set; }
|
|
}
|
|
} |