mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-15 07:54:44 -04:00
* chore: move all observatory repos to core * only save journal folder on change, don't constantly re-check during monitoring * chore: monorepo project changes * chore: monorepo migration
21 lines
749 B
C#
21 lines
749 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 long 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; }
|
|
}
|
|
}
|