Files
SkydiveLogs/Back/skydiveLogs-api.Model/Jump.cs
2020-03-19 21:33:09 +01:00

30 lines
583 B
C#

using System;
namespace skydiveLogs_api.Model
{
public class Jump
{
public int Id { get; set; }
public JumpType JumpType { get; set; }
public Aircraft Aircraft { get; set; }
public DropZone DropZone { get; set; }
public Gear Gear { get; set; }
public int UserId { 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; }
}
}