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