refactor and chat base
This commit is contained in:
18
Room/Chat/ChatOutput.cs
Normal file
18
Room/Chat/ChatOutput.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user