2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00
2024-01-21 13:35:03 -03:30

20 lines
695 B
C#

using Observatory.Framework.Files.ParameterTypes;
using System.Text.Json.Serialization;
namespace Observatory.Framework.Files.Journal
{
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; }
}
}