19 lines
307 B
C#
19 lines
307 B
C#
namespace MauMau_Server.Mau;
|
|
|
|
public class HandDTO
|
|
{
|
|
public List<string> Cards { get; set; } = new();
|
|
|
|
public HandDTO(List<Card> cards)
|
|
{
|
|
foreach (var card in cards)
|
|
{
|
|
Cards.Add(card.ToString());
|
|
}
|
|
}
|
|
|
|
public HandDTO()
|
|
{
|
|
|
|
}
|
|
} |