Files
Sébastien André 69c49ab011 Add a information on the jump that is a special jump
Add the "update" feature on the jump.
2021-04-21 15:16:10 +02:00

29 lines
588 B
C#

using System;
namespace skydiveLogs_api.DataContract
{
public class JumpReq
{
public int Id { get; set; }
public int JumpTypeId { get; set; }
public int AircraftId { get; set; }
public int DropZoneId { get; set; }
public int GearId { 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; }
public bool IsSpecial { get; set; }
}
}