Files
Shogi/Shogi.Contracts/Socket/SessionCreatedSocketMessage.cs
2023-01-28 13:21:47 -06:00

9 lines
194 B
C#

using Shogi.Contracts.Types;
namespace Shogi.Contracts.Socket;
public class SessionCreatedSocketMessage : ISocketResponse
{
public SocketAction Action => SocketAction.SessionCreated;
}