using Newtonsoft.Json; namespace NewHorizons.Utility { [JsonObject] public class TimeValuePair { /// /// A specific point in time /// public float time; /// /// The value for this point in time /// public float value; } }