mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
13 lines
338 B
C#
13 lines
338 B
C#
using Observatory.Framework.Files.ParameterTypes;
|
|
using System.Collections.Immutable;
|
|
|
|
namespace Observatory.Framework.Files.Journal
|
|
{
|
|
public class Cargo : JournalBase
|
|
{
|
|
public string Vessel { get; init; }
|
|
public int Count { get; init; }
|
|
public ImmutableList<CargoType> Inventory { get; init; }
|
|
}
|
|
}
|