2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-07-02 00:43:42 -04:00
Files
pulsar/ObservatoryFramework/Files/Journal/Odyssey/BookTaxi.cs
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; }
}
}