namespace Observatory.Framework.Files.Journal.Exploration; /// /// Event generated the first time a CMDR finds a particular material resource. /// public class MaterialDiscovered : JournalBase { public override string Event => "MaterialDiscovered"; /// /// Category of the material. /// public string Category { get; init; } /// /// Name of the material. /// public string Name { get; init; } /// /// Localised name of the material. /// public string Name_Localised { get; init; } /// /// Count of the number of discovered items in that category by the CMDR. /// public int DiscoveryNumber { get; init; } }