For the list of jumps, return only the id of aircraft, type jump, gear and dz. The mapping will do in the Front layer.

This commit is contained in:
Sébastien André
2021-05-02 14:58:49 +02:00
parent 6bc87611e3
commit 192a985b50
2 changed files with 20 additions and 18 deletions

View File

@@ -4,26 +4,21 @@ 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 JumpTypeResp JumpType { get; set; }
public AircraftSimpleResp Aircraft { get; set; }
public DropZoneSimpleResp DropZone { get; set; }
public GearResp Gear { get; set; }
public int ExitAltitude { get; set; }
public int DeployAltitude { 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; }
public string Notes { get; set; }
public DateTime JumpDate { get; set; }
public bool IsSpecial { get; set; }
#endregion Public Properties
}
}