mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-13 07:14: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
27 lines
1.0 KiB
C#
27 lines
1.0 KiB
C#
using Observatory.Framework.Files.Converters;
|
|
using Observatory.Framework.Files.ParameterTypes;
|
|
using System.Text.Json.Serialization;
|
|
using System.Collections.Immutable;
|
|
|
|
namespace Observatory.Framework.Files.Journal
|
|
{
|
|
public class EngineerCraft : JournalBase
|
|
{
|
|
public string Engineer { get; init; }
|
|
public long EngineerID { get; init; }
|
|
public string Blueprint { get; init; }
|
|
public string Slot { get; init; }
|
|
public string Module { get; init; }
|
|
public long BlueprintID { get; init; }
|
|
public string BlueprintName { get; init; }
|
|
public string ExperimentalEffect { get; init; }
|
|
public string ExperimentalEffect_Localised { get; init; }
|
|
public int Level { get; init; }
|
|
public float Quality { get; init; }
|
|
public string ApplyExperimentalEffect { get; init; }
|
|
[JsonConverter(typeof(MaterialConverter))]
|
|
public ImmutableList<Material> Ingredients { get; init; }
|
|
public ImmutableList<Modifier> Modifiers { get; init; }
|
|
}
|
|
}
|