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