basic mau

This commit is contained in:
2023-03-16 17:11:15 +01:00
parent 4f85f6f793
commit c902493e28
5 changed files with 76 additions and 9 deletions

View File

@@ -2,13 +2,13 @@
public class HandDTO
{
public List<string> _cards { get; set; } = new();
public List<string> Cards { get; set; } = new();
public HandDTO(List<Card> cards)
{
foreach (var card in cards)
{
_cards.Add(card.ToString());
Cards.Add(card.ToString());
}
}