using Observatory.Framework.Files.ParameterTypes; using System.Collections.Immutable; namespace Observatory.Framework.Files.Journal { public class TechnologyBroker : JournalBase { public string BrokerType { get; init; } public ulong MarketID { get; init; } public ImmutableList ItemsUnlocked { get; init; } public ImmutableList Commodities { get; init; } public ImmutableList Materials { get; init; } } }