EDBGS/EDPlayerJournal/Location.cs

8 lines
243 B
C#
Raw Permalink Normal View History

2022-11-01 18:01:28 +01:00
namespace EDPlayerJournal;
public class Location {
public string StarSystem { get; set; } = "";
public ulong SystemAddress { get; set; } = 0;
public string Station { get; set; } = "";
public ulong[]? StarPos { get; set; }
}