mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-07-01 08:23:42 -04:00
Add Startup Events to Database
Now emit startup events on conneciton Some events still to add
This commit is contained in:
@ -16,7 +16,7 @@ public class ApproachSettlement : JournalBase
|
||||
public float Longitude { get; init; }
|
||||
public int BodyID { get; init; }
|
||||
public string BodyName { get; init; }
|
||||
public ImmutableList<StationEconomy> StationEconomies { get; init; }
|
||||
public IReadOnlyCollection<StationEconomy> StationEconomies { get; init; }
|
||||
public string StationEconomy { get; init; }
|
||||
public string StationEconomy_Localised { get; init; }
|
||||
public Faction StationFaction { get; init; }
|
||||
|
@ -6,5 +6,5 @@ namespace Observatory.Framework.Files.Journal.Other;
|
||||
public class CargoTransfer : JournalBase
|
||||
{
|
||||
public override string Event => "CargoTransfer";
|
||||
public ImmutableList<CargoTransferDetail> Transfers { get; init; }
|
||||
public IReadOnlyCollection<CargoTransferDetail> Transfers { get; init; }
|
||||
}
|
@ -6,7 +6,7 @@ namespace Observatory.Framework.Files.Journal.Other;
|
||||
public class ProspectedAsteroid : JournalBase
|
||||
{
|
||||
public override string Event => "ProspectedAsteroid";
|
||||
public ImmutableList<ProspectMaterial> Materials { get; init; }
|
||||
public IReadOnlyCollection<ProspectMaterial> Materials { get; init; }
|
||||
public string Content { get; init; }
|
||||
public string Content_Localised { get; init; }
|
||||
public string MotherlodeMaterial { get; init; }
|
||||
|
@ -5,5 +5,5 @@ namespace Observatory.Framework.Files.Journal.Other;
|
||||
public class RebootRepair : JournalBase
|
||||
{
|
||||
public override string Event => "RebootRepair";
|
||||
public ImmutableList<string> Modules { get; init; }
|
||||
public ICollection<string> Modules { get; init; }
|
||||
}
|
@ -11,5 +11,5 @@ public class Synthesis : JournalBase
|
||||
public string Name { get; init; }
|
||||
|
||||
[JsonConverter(typeof(MaterialConverter))]
|
||||
public ImmutableList<Material> Materials { get; init; }
|
||||
public IReadOnlyCollection<Material> Materials { get; init; }
|
||||
}
|
@ -5,5 +5,5 @@ namespace Observatory.Framework.Files.Journal.Other;
|
||||
public class WingJoin : JournalBase
|
||||
{
|
||||
public override string Event => "WingJoin";
|
||||
public ImmutableList<string> Others { get; init; }
|
||||
public ICollection<string> Others { get; init; }
|
||||
}
|
Reference in New Issue
Block a user