mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-13 15:24:44 -04:00
18 lines
648 B
C#
18 lines
648 B
C#
using System.Text.Json.Serialization;
|
|
using Observatory.Framework.Files.ParameterTypes;
|
|
|
|
namespace Observatory.Framework.Files.Journal.Odyssey;
|
|
|
|
public class ScanOrganic : JournalBase
|
|
{
|
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
|
public ScanOrganicType ScanType { get; init; }
|
|
public string Genus { get; init; }
|
|
public string Genus_Localised { get; init; }
|
|
public string Species { get; init; }
|
|
public string Species_Localised { get; init; }
|
|
public string Variant { get; init; }
|
|
public string Variant_Localised { get; init; }
|
|
public ulong SystemAddress { get; init; }
|
|
public int Body { get; init; }
|
|
} |