24 lines
653 B
C#
24 lines
653 B
C#
using System;
|
|
|
|
namespace skydiveLogs_api.DataContract
|
|
{
|
|
public class JumpResp
|
|
{
|
|
#region Public Properties
|
|
|
|
public int AircraftId { get; set; }
|
|
public int DeployAltitude { get; set; }
|
|
public int DropZoneId { get; set; }
|
|
public int ExitAltitude { get; set; }
|
|
public int GearId { get; set; }
|
|
public int Id { get; set; }
|
|
|
|
public bool IsSpecial { get; set; }
|
|
public DateTime JumpDate { get; set; }
|
|
public int JumpTypeId { get; set; }
|
|
public string Notes { get; set; }
|
|
public bool WithCutaway { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |