d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
24 lines
577 B
C#
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; }
|
|
}
|