18 lines
288 B
C#
18 lines
288 B
C#
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()
|
|
{
|
|
|
|
}
|
|
} |