ready for testing
This commit is contained in:
parent
d99a190869
commit
97e981bae2
92 changed files with 3058 additions and 1183 deletions
|
|
@ -1,11 +1,27 @@
|
|||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class Passengers : JournalBase
|
||||
{
|
||||
public ImmutableList<Passenger> Manifest { get; init; }
|
||||
[JsonPropertyName("Passengers_Missions_Accepted")]
|
||||
public int PassengersMissionsAccepted { get; init; }
|
||||
|
||||
[JsonPropertyName("Passengers_Missions_Bulk")]
|
||||
public int PassengersMissionsBulk { get; init; }
|
||||
|
||||
[JsonPropertyName("Passengers_Missions_Delivered")]
|
||||
public int PassengersMissionsDelivered { get; init; }
|
||||
|
||||
[JsonPropertyName("Passengers_Missions_Disgruntled")]
|
||||
public int PassengersMissionsDisgruntled { get; init; }
|
||||
|
||||
[JsonPropertyName("Passengers_Missions_Ejected")]
|
||||
public int PassengersMissionsEjected { get; init; }
|
||||
|
||||
[JsonPropertyName("Passengers_Missions_VIP")]
|
||||
public int PassengersMissionsVip { get; init; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,5 +27,6 @@ namespace Observatory.Framework.Files.Journal
|
|||
public CQC CQC { get; init; }
|
||||
[JsonPropertyName("FLEETCARRIER")]
|
||||
public FleetCarrier FleetCarrier { get; init; }
|
||||
public Exobiology Exobiology { get; init; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue