13 lines
297 B
C#
13 lines
297 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Hideout;
|
|
|
|
public record RecordShootingRangePoints
|
|
{
|
|
[JsonPropertyName("Action")]
|
|
public string? Action { get; set; } = "RecordShootingRangePoints";
|
|
|
|
[JsonPropertyName("points")]
|
|
public int? Points { get; set; }
|
|
}
|