Move the equipment into the Jump.

This commit is contained in:
2026-05-06 21:36:15 +02:00
parent b5a8aa1b4f
commit dcc4ee20a2
8 changed files with 38 additions and 12 deletions
@@ -17,7 +17,5 @@
public string MainCanopy { get; set; }
public string ReserveCanopy { get; set; }
public string Equipment { get; set; }
}
}
@@ -17,7 +17,5 @@
public string MainCanopy { get; set; }
public string ReserveCanopy { get; set; }
public string Equipment { get; set; }
}
}
@@ -25,5 +25,7 @@ namespace skydiveLogs_api.DataContract
public DateTime JumpDate { get; set; }
public bool IsSpecial { get; set; }
public string Equipment { get; set; }
}
}
@@ -7,18 +7,29 @@ namespace skydiveLogs_api.DataContract
#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; }
public string Equipment { get; set; }
#endregion Public Properties
}
}