mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
21 lines
750 B
C#
21 lines
750 B
C#
using Observatory.Framework.Files.ParameterTypes;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Observatory.Framework.Files.Journal
|
|
{
|
|
public class EngineerContribution : JournalBase
|
|
{
|
|
public string Engineer { get; init; }
|
|
public ulong EngineerID { get; init; }
|
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
|
public ContributionType Type { get; init; }
|
|
public string Commodity { get; init; }
|
|
public string Commodity_Localised { get; init; }
|
|
public string Material { get; init; }
|
|
public string Material_Localised { get; init; }
|
|
public string Faction { get; init; }
|
|
public int Quantity { get; init; }
|
|
public int TotalQuantity { get; init; }
|
|
}
|
|
}
|