12 lines
321 B
C#
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; }
|
|
}
|
|
}
|