Skip to content

Commit

Permalink
feat(armament): include 'FlightCode' in responses
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlosPavajeau committed Sep 29, 2021
1 parent fae6f00 commit 1a42318
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ public class AmmunitionResponse
public string Mark { get; init; }
public string Caliber { get; init; }
public int QuantityAvailable { get; init; }
public string FlightCode { get; init; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ public class EquipmentResponse
public string Type { get; init; }
public string Model { get; init; }
public int QuantityAvailable { get; init; }
public string FlightCode { get; init; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ public class ExplosiveResponse
public string Mark { get; init; }
public string Lot { get; init; }
public int QuantityAvailable { get; init; }
public string FlightCode { get; init; }
}
}
1 change: 1 addition & 0 deletions src/Armory/Armament/Weapons/Application/WeaponResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ public class WeaponResponse
public string Caliber { get; init; }
public int NumberOfProviders { get; init; }
public int ProviderCapacity { get; init; }
public string FlightCode { get; init; }
public string OwnerId { get; init; }
public string OwnerName { get; init; }
}
Expand Down

0 comments on commit 1a42318

Please sign in to comment.