14 lines
261 B
C#
14 lines
261 B
C#
using Shogi.Contracts.Types;
|
|
|
|
namespace Shogi.Contracts.Socket;
|
|
|
|
public class SessionCreatedSocketMessage : ISocketResponse
|
|
{
|
|
public SocketAction Action { get; }
|
|
|
|
public SessionCreatedSocketMessage()
|
|
{
|
|
Action = SocketAction.SessionCreated;
|
|
}
|
|
}
|