1
0
mirror of synced 2025-02-11 16:33:03 +01:00
2023-02-17 00:38:01 +08:00

8 lines
162 B
C#

namespace Application.Dto.Api;
public class ClientCardDto
{
public long CardId { get; set; }
public string PlayerName { get; set; } = string.Empty;
}