8 lines
243 B
C#
8 lines
243 B
C#
|
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; }
|
|||
|
}
|