d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
27 lines
582 B
C#
27 lines
582 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Profile;
|
|
|
|
public record 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; }
|
|
}
|