EDBGS/EDPlayerJournal/Entries/UnderAttackEntry.cs

8 lines
217 B
C#
Raw Permalink Normal View History

2022-11-01 18:01:28 +01:00
namespace EDPlayerJournal.Entries;
public class UnderAttackEntry : Entry {
public string? Target { get; set; }
protected override void Initialise() {
Target = JSON.Value<string>("Target");
}
}