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

25 lines
509 B
C#

using System.Text.Json.Serialization;
using Core.Models.Eft.Common.Tables;
namespace Core.Models.Eft.Common;
public class PmcData : BotBase
{
}
public class PostRaidPmcData : BotBase
{
[JsonPropertyName("Stats")]
public PostRaidStats Stats { get; set; }
}
public class PostRaidStats
{
[JsonPropertyName("Eft")]
public EftStats Eft { get; set; }
/** Only found in profile we get from client post raid */
[JsonPropertyName("Arena")]
public EftStats Arena { get; set; }
}