1
0
mirror of synced 2025-02-14 17:53:07 +01:00
2023-02-18 01:29:20 +08:00

8 lines
157 B
C#

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