Files
SkydiveLogs/Back/skydiveLogs-api.Model/Jump.cs
2019-09-26 15:31:17 +02:00

28 lines
539 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace skydiveLogs_api.Model
{
public class Jump
{
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; }
}
}