Files
Shogi/Gameboard.ShogiUI.Sockets.ServiceModels/Api/PostSession.cs
2021-08-01 17:32:43 -05:00

11 lines
253 B
C#

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