Files
SkydiveLogs/Back/skydiveLogs-api/DataContract/JumpResp.cs

28 lines
569 B
C#

using System;
namespace skydiveLogs_api.DataContract
{
public class JumpResp
{
public int Id { get; set; }
public JumpTypeResp JumpType { get; set; }
public AircraftResp Aircraft { get; set; }
public DropZoneResp DropZone { get; set; }
public GearResp Gear { get; set; }
public int ExitAltitude { get; set; }
public int DeployAltitude { get; set; }
public bool WithCutaway { get; set; }
public string Notes { get; set; }
public DateTime JumpDate { get; set; }
}
}