2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00
2022-06-05 23:09:16 -02:30

11 lines
299 B
C#

namespace Observatory.Framework.Files.Journal
{
public class BookTaxi : JournalBase
{
public int Cost { get; init; }
public string DestinationSystem { get; init; }
public string DestinationLocation { get; init; }
public bool Retreat { get; init; }
}
}