Game seems to work
All checks were successful
Build Mau & Deploy Mau / build (push) Successful in 1m31s
Build Mau & Deploy Mau / deploy (push) Has been skipped

This commit is contained in:
DTieman
2024-05-05 17:08:02 +02:00
parent 694bc6147a
commit 90c9b0031c
20 changed files with 213 additions and 212 deletions

View File

@@ -2,12 +2,12 @@
public class ActionDTO
{
public string Action { get; set; }
public string Type { get; set; }
public string Data { get; set; }
public ActionDTO(string action, string data)
public ActionDTO(string type, string data)
{
Action = action;
Type = type;
Data = data;
}