19 lines
420 B
C#

using Newtonsoft.Json;
namespace NewHorizons.External.Modules
{
[JsonObject]
public class FocalPointModule
{
/// <summary>
/// Name of the primary planet in this binary system
/// </summary>
public string Primary;
/// <summary>
/// Name of the secondary planet in this binary system
/// </summary>
public string Secondary;
}
}