Files
SPT-Server-Build/Core/Models/Eft/Common/PmcData.cs
T
2025-01-08 06:25:51 -05:00

24 lines
486 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; }
}