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:
@@ -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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user