Files
Shogi/Gameboard.ShogiUI.Sockets.ServiceModels/Api/GetSessionsResponse.cs
2021-11-10 18:46:29 -06:00

12 lines
321 B
C#

using Gameboard.ShogiUI.Sockets.ServiceModels.Types;
using System.Collections.ObjectModel;
namespace Gameboard.ShogiUI.Sockets.ServiceModels.Api
{
public class GetSessionsResponse
{
public Collection<Game> PlayerHasJoinedSessions { get; set; }
public Collection<Game> AllOtherSessions { get; set; }
}
}