Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Profile/CompletedAchievementsResponse.cs
T
2025-03-07 13:16:43 +00:00

14 lines
260 B
C#

using System.Text.Json.Serialization;
namespace SPTarkov.Server.Core.Models.Eft.Profile;
public record CompletedAchievementsResponse
{
[JsonPropertyName("elements")]
public Dictionary<string, int>? Elements
{
get;
set;
}
}