Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Profile/SystemData.cs
T
2025-06-04 14:49:37 +01:00

52 lines
815 B
C#

using System.Text.Json.Serialization;
namespace SPTarkov.Server.Core.Models.Eft.Profile;
public record SystemData
{
[JsonExtensionData]
public Dictionary<string, object> ExtensionData { get; set; }
[JsonPropertyName("date")]
public string? Date
{
get;
set;
}
[JsonPropertyName("time")]
public string? Time
{
get;
set;
}
[JsonPropertyName("location")]
public string? Location
{
get;
set;
}
[JsonPropertyName("buyerNickname")]
public string? BuyerNickname
{
get;
set;
}
[JsonPropertyName("soldItem")]
public string? SoldItem
{
get;
set;
}
[JsonPropertyName("itemCount")]
public int? ItemCount
{
get;
set;
}
}