using Observatory.Framework.Files.ParameterTypes; using System.Collections.Immutable; namespace Observatory.Framework.Files.Journal { public class TradeMicroResources : JournalBase { public ImmutableList Offered { get; init; } public string Received { get; init; } public MicroCategory Category { get; init; } public int Count { get; init; } public ulong MarketID { get; init; } } }