Files
Shogi/Gameboard.ShogiUI.Sockets.ServiceModels/Api/Messages/PostGameInvitation.cs

21 lines
451 B
C#

namespace Gameboard.ShogiUI.Sockets.ServiceModels.Api.Messages
{
public class PostGameInvitation
{
public string SessionName { get; set; }
}
public class PostGuestGameInvitation
{
public string GuestId { get; set; }
public string SessionName { get; set; }
}
public class PostGameInvitationResponse
{
public string Code { get; }
public PostGameInvitationResponse(string code)
{
Code = code;
}
}
}