Files
SPT-Server-Build/Core/Models/Eft/Profile/SystemData.cs
T
2025-01-06 21:49:53 +00:00

24 lines
565 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Profile;
public class SystemData
{
[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; }
}