From 1e1aeef9584718650ea504e59559f68afbf83ddf Mon Sep 17 00:00:00 2001 From: F K <54195004+fredjk-gh@users.noreply.github.com> Date: Sat, 1 Jan 2022 02:21:30 -0500 Subject: [PATCH] Fix incorrect type for the Cargo.Inventory property (#49) Discovered when attempting to handle this event for an in-progress plugin. --- ObservatoryFramework/Files/Journal/Startup/Cargo.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ObservatoryFramework/Files/Journal/Startup/Cargo.cs b/ObservatoryFramework/Files/Journal/Startup/Cargo.cs index 68d372a..8742a7d 100644 --- a/ObservatoryFramework/Files/Journal/Startup/Cargo.cs +++ b/ObservatoryFramework/Files/Journal/Startup/Cargo.cs @@ -1,4 +1,5 @@ -using System.Collections.Immutable; +using Observatory.Framework.Files.ParameterTypes; +using System.Collections.Immutable; namespace Observatory.Framework.Files.Journal { @@ -6,6 +7,6 @@ namespace Observatory.Framework.Files.Journal { public string Vessel { get; init; } public int Count { get; init; } - public ImmutableList Inventory { get; init; } + public ImmutableList Inventory { get; init; } } }