using System.Collections.Immutable;
using Observatory.Framework.Files.Journal;
using Observatory.Framework.Files.ParameterTypes;
namespace Observatory.Framework.Files;
///
/// Elite Dangerous fcmaterials.json file. Contains data about current fleet carrier bartender stock.
///
public class FCMaterialsFile : JournalBase
{
public override string Event => "FCMaterials";
///
/// List of items in stock and in demand from the carrier bartender.
///
public IReadOnlyCollection Items { get; init; }
}