Files
Shogi/Gameboard.ShogiUI.Sockets.ServiceModels/Api/Messages/PostGameInvitation.cs
2020-12-13 14:27:36 -06:00

16 lines
310 B
C#

namespace AspShogiSockets.ServiceModels.Api.Messages
{
public class PostGameInvitation
{
public string SessionName { get; set; }
}
public class PostGameInvitationResponse
{
public string Code { get; }
public PostGameInvitationResponse(string code)
{
Code = code;
}
}
}