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