Files
SPT-Server-Build/Core/Models/Eft/Hideout/RecordShootingRangePoints.cs
T
2025-01-07 10:42:52 +00:00

12 lines
293 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Hideout;
public class RecordShootingRangePoints
{
[JsonPropertyName("Action")]
public string Action { get; set; } = "RecordShootingRangePoints";
[JsonPropertyName("points")]
public int Points { get; set; }
}