Small refactor for receiving messages from websockets
This commit is contained in:
@@ -2,12 +2,12 @@
|
||||
|
||||
public class ChatOutput
|
||||
{
|
||||
public string Playername { get; set; }
|
||||
public string PlayerName { get; set; }
|
||||
public string Message { get; set; }
|
||||
|
||||
public ChatOutput(string playername, string message)
|
||||
public ChatOutput(string playerName, string message)
|
||||
{
|
||||
Playername = playername;
|
||||
PlayerName = playerName;
|
||||
Message = message;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user