2022-05-22 21:30:45 -04:00

22 lines
432 B
C#

#region
using Newtonsoft.Json;
#endregion
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;
}
}