Files
SkydiveLogs/Back/skydiveLogs-api.Domain/Jump.cs
T

37 lines
755 B
C#

using System;
namespace skydiveLogs_api.Domain
{
public class Jump
{
#region Public Properties
public int Id { get; set; }
public Aircraft Aircraft { get; set; }
public int DeployAltitude { get; set; }
public DropZone DropZone { get; set; }
public int ExitAltitude { get; set; }
public Gear Gear { get; set; }
public bool IsSpecial { get; set; }
public DateTime JumpDate { get; set; }
public JumpType JumpType { get; set; }
public string Notes { get; set; }
public User User { get; set; }
public bool WithCutaway { get; set; }
public string Equipment { get; set; }
#endregion Public Properties
}
}