using System.Collections.Immutable; using Observatory.Framework.Files.ParameterTypes; namespace Observatory.Framework.Files.Journal.StationServices; 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; } }