Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Common/MetricsTableData.cs
T
2025-08-21 09:45:07 +00:00

24 lines
577 B
C#

using System.Text.Json.Serialization;
namespace SPTarkov.Server.Core.Models.Eft.Common;
public record MetricsTableData
{
[JsonPropertyName("Keys")]
public List<int>? Keys { get; set; }
[JsonPropertyName("NetProcessingBins")]
public List<int>? NetProcessingBins { get; set; }
[JsonPropertyName("RenderBins")]
public List<int>? RenderBins { get; set; }
[JsonPropertyName("GameUpdateBins")]
public List<int>? GameUpdateBins { get; set; }
[JsonPropertyName("MemoryMeasureInterval")]
public int? MemoryMeasureInterval { get; set; }
}