Files
Shogi/Gameboard.ShogiUI.Sockets.ServiceModels/Api/Messages/PostSession.cs
2021-05-08 10:26:04 -05:00

11 lines
262 B
C#

namespace Gameboard.ShogiUI.Sockets.ServiceModels.Api.Messages
{
public class PostSession
{
public string Name { get; set; }
public string Player1 { get; set; }
public string Player2 { get; set; }
public bool IsPrivate { get; set; }
}
}