mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-07-02 17:03:41 -04:00
Reorganize all observatory core projects into monorepo (#25)
* 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
This commit is contained in:
@ -0,0 +1,26 @@
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user