14 lines
281 B
C#
14 lines
281 B
C#
using MessagePack;
|
|
|
|
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Requests;
|
|
|
|
[MessagePackObject]
|
|
public class IndexRequest : BaseRequest
|
|
{
|
|
[Key("carrier")]
|
|
public string Carrier { get; set; }
|
|
|
|
[Key("card_master_hash")]
|
|
public string CardMasterHash { get; set; }
|
|
}
|