namespace Observatory.Framework.Files.Journal.Exploration; /// /// Journal event generated when buying system data from the galaxy map while docked. /// public class BuyExplorationData : JournalBase { public override string Event => "BuyExplorationData"; /// /// Name of the system for which data was purchased. /// public string System { get; init; } /// /// Amount paid for the data. /// public int Cost { get; init; } }