namespace Observatory.Framework.Files.Journal { /// /// Event generated when a material resource is collected. /// public class MaterialCollected : JournalBase { /// /// 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; } } }