using Gameboard.ShogiUI.Sockets.ServiceModels.Types; using System.Collections.Generic; namespace Gameboard.ShogiUI.Sockets.ServiceModels.Api { public class GetSessionsResponse { public IList PlayerHasJoinedSessions { get; set; } public IList AllOtherSessions { get; set; } } }