draw works
This commit is contained in:
18
Mau/ActionDTO.cs
Normal file
18
Mau/ActionDTO.cs
Normal 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()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user