JohnCorby 656ff16305 Revert "Reformat"
This reverts commit 7c0ba5597720f963432d8379a236e74f3508d077.
2022-05-22 18:41:34 -07:00

18 lines
411 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;
}
}