Add missing converter for micro resource trade
This commit is contained in:
parent
d356e43edb
commit
8094820ffd
1 changed files with 2 additions and 0 deletions
|
|
@ -1,5 +1,6 @@
|
|||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
|
|
@ -7,6 +8,7 @@ namespace Observatory.Framework.Files.Journal
|
|||
{
|
||||
public ImmutableList<MicroResource> Offered { get; init; }
|
||||
public string Received { get; init; }
|
||||
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||
public MicroCategory Category { get; init; }
|
||||
public int Count { get; init; }
|
||||
public ulong MarketID { get; init; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue