using System;
namespace StardewModdingAPI.Framework.PerformanceCounter
{
/// A single performance counter entry. Records the DateTime of the event and the elapsed millisecond.
internal struct PerformanceCounterEntry
{
/// The DateTime when the entry occured.
public DateTime EventTime;
/// The elapsed milliseconds
public double ElapsedMilliseconds;
}
}