using Observatory.Framework.Files.ParameterTypes; using System.Collections.Immutable; namespace Observatory.Framework.Files.Journal { public class Materials : JournalBase { public ImmutableList Raw { get; init; } public ImmutableList Manufactured { get; init; } public ImmutableList Encoded { get; init; } } }