mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-07-03 01: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:
27
ObservatoryFramework/Files/Journal/Exploration/CodexEntry.cs
Normal file
27
ObservatoryFramework/Files/Journal/Exploration/CodexEntry.cs
Normal file
@ -0,0 +1,27 @@
|
||||
using System.Collections.Immutable;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class CodexEntry : JournalBase
|
||||
{
|
||||
public long 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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user