Files
Shogi/Shogi.Contracts/Api/Queries/ReadAllSessionsResponse.cs

11 lines
285 B
C#

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