9 lines
194 B
C#
9 lines
194 B
C#
using Shogi.Contracts.Types;
|
|
|
|
namespace Shogi.Contracts.Socket;
|
|
|
|
public class SessionCreatedSocketMessage : ISocketResponse
|
|
{
|
|
public SocketAction Action => SocketAction.SessionCreated;
|
|
}
|