13 lines
307 B
C#
13 lines
307 B
C#
namespace EDPlayerJournal.Entries;
|
|
|
|
public class UndockedEntry : Entry {
|
|
/// <summary>
|
|
/// Name of the station
|
|
/// </summary>
|
|
public string? StationName { get; set; }
|
|
|
|
protected override void Initialise() {
|
|
StationName = JSON.Value<string>("StationName");
|
|
}
|
|
}
|