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; } }