10 lines
218 B
C#
10 lines
218 B
C#
using Shogi.Contracts.Types;
|
|
|
|
namespace Shogi.Contracts.Socket
|
|
{
|
|
public class SessionJoinedByPlayerSocketMessage : ISocketResponse
|
|
{
|
|
public SocketAction Action => SocketAction.SessionJoined;
|
|
}
|
|
}
|