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