mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
Some invalid journal data is now handled Journals now use polymorphic deserialization Added Event names to all journal events Remove unused controllers
16 lines
347 B
C#
16 lines
347 B
C#
namespace Observatory.Framework.Files.Journal.Startup;
|
|
|
|
public class Powerplay : JournalBase
|
|
{
|
|
public override string Event => "Powerplay";
|
|
|
|
public string Power { get; init; }
|
|
|
|
public int Rank { get; init; }
|
|
|
|
public int Merits { get; init; }
|
|
|
|
public int Votes { get; init; }
|
|
|
|
public long TimePledged { get; init; }
|
|
} |