11 lines
220 B
C#
11 lines
220 B
C#
using System.Text.Json.Serialization;
|
|
using Core.Models.Utils;
|
|
|
|
namespace Core.Models.Eft.Game;
|
|
|
|
public class GameEmptyCrcRequestData : IRequestData
|
|
{
|
|
[JsonPropertyName("crc")]
|
|
public int? Crc { get; set; }
|
|
}
|