Fix incorrect type for the Cargo.Inventory property (#49)

Discovered when attempting to handle this event for an in-progress plugin.
This commit is contained in:
F K 2022-01-01 02:21:30 -05:00 committed by GitHub
commit 1e1aeef958
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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<Cargo> Inventory { get; init; }
public ImmutableList<CargoType> Inventory { get; init; }
}
}