12 lines
329 B
C#
12 lines
329 B
C#
using Gameboard.ShogiUI.Sockets.ServiceModels.Types;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Gameboard.ShogiUI.Sockets.ServiceModels.Api
|
|
{
|
|
public class GetSessionsResponse
|
|
{
|
|
public IList<SessionMetadata> PlayerHasJoinedSessions { get; set; }
|
|
public IList<SessionMetadata> AllOtherSessions { get; set; }
|
|
}
|
|
}
|