18 lines
327 B
C#
18 lines
327 B
C#
namespace MauMau_Server.Mau;
|
|
|
|
public class ChatOutput
|
|
{
|
|
public string PlayerName { get; set; }
|
|
public string Message { get; set; }
|
|
|
|
public ChatOutput(string playerName, string message)
|
|
{
|
|
PlayerName = playerName;
|
|
Message = message;
|
|
}
|
|
|
|
public ChatOutput()
|
|
{
|
|
|
|
}
|
|
} |