namespace Observatory.Framework.Files.Journal.Exploration; /// /// Event generated when a material resource is collected. /// public class MaterialCollected : JournalBase { public override string Event => "MaterialCollected"; /// /// Category to which the material belongs. /// 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 material. /// public int Count { get; init; } }