namespace Observatory.Framework.Files.Journal.Startup; public class Progress : JournalBase { public override string Event => "Progress"; /// /// percent progress towards next rank /// public int Combat { get; init; } /// /// percent progress towards next rank /// public int Trade { get; init; } /// /// percent progress towards next rank /// public int Explore { get; init; } /// /// percent progress towards next rank /// public int CQC { get; init; } /// /// percent progress towards next rank /// public int Soldier { get; init; } /// /// percent progress towards next rank /// public int Exobiologist { get; init; } /// /// percent progress towards next rank /// public int Empire { get; init; } /// /// percent progress towards next rank /// public int Federation { get; init; } }