11 lines
253 B
C#
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; }
|
|
}
|
|
}
|