mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
18 lines
514 B
C#
18 lines
514 B
C#
namespace Observatory.Framework.Files.Journal
|
|
{
|
|
/// <summary>
|
|
/// Journal event generated when buying system data from the galaxy map while docked.
|
|
/// </summary>
|
|
public class BuyExplorationData : JournalBase
|
|
{
|
|
/// <summary>
|
|
/// Name of the system for which data was purchased.
|
|
/// </summary>
|
|
public string System { get; init; }
|
|
/// <summary>
|
|
/// Amount paid for the data.
|
|
/// </summary>
|
|
public int Cost { get; init; }
|
|
}
|
|
}
|