draw works

This commit is contained in:
2023-03-21 12:25:14 +01:00
parent e9ca9a085e
commit bae605da54
3 changed files with 47 additions and 5 deletions

18
Mau/ActionDTO.cs Normal file
View File

@@ -0,0 +1,18 @@
namespace MauMau_Server.Mau;
public class ActionDTO
{
public string Action { get; set; }
public string Data { get; set; }
public ActionDTO(string action, string data)
{
Action = action;
Data = data;
}
public ActionDTO()
{
}
}