8 lines
162 B
C#
8 lines
162 B
C#
namespace Application.Dto.Api;
|
|
|
|
public class ClientCardDto
|
|
{
|
|
public long CardId { get; set; }
|
|
|
|
public string PlayerName { get; set; } = string.Empty;
|
|
} |