Files
Shogi/Gameboard.ShogiUI.Sockets.ServiceModels/Api/GetSessions.cs
2022-06-12 12:37:32 -05:00

12 lines
327 B
C#

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