using Shogi.Contracts.Types; using System.Collections.Generic; namespace Shogi.Contracts.Api; public class ReadSessionsPlayerCountResponse { public IList PlayerHasJoinedSessions { get; set; } public IList AllOtherSessions { get; set; } }