11 lines
291 B
C#
11 lines
291 B
C#
using System.Text.Json.Serialization;
|
|
using MessagePack;
|
|
|
|
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Requests.ArenaTwoPick;
|
|
|
|
[MessagePackObject]
|
|
public class EntryRequest
|
|
{
|
|
[JsonPropertyName("consume_item_type")] [Key("consume_item_type")] public int ConsumeItemType { get; set; }
|
|
}
|