2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00
2022-06-05 23:09:16 -02:30

29 lines
1.1 KiB
C#

using System.Collections.Immutable;
namespace Observatory.Framework.Files.Journal
{
public class CodexEntry : JournalBase
{
public ulong EntryID { get; init; }
public string Name { get; init; }
public string Name_Localised { get; init; }
public string SubCategory { get; init; }
public string SubCategory_Localised { get; init; }
public string Category { get; init; }
public string Category_Localised { get; init; }
public string Region { get; init; }
public string Region_Localised { get; init; }
public string System { get; init; }
public ulong SystemAddress { get; init; }
public string NearestDestination { get; init; }
public string NearestDestination_Localised { get; init; }
public bool IsNewEntry { get; init; }
public bool NewTraitsDiscovered { get; init; }
public ImmutableList<string> Traits { get; init; }
public int VoucherAmount { get; init; }
public float Latitude { get; init; }
public float Longitude { get; init; }
public int BodyID { get; init; }
}
}