9 lines
151 B
C#
9 lines
151 B
C#
using Shogi.Contracts.Types;
|
|
|
|
namespace Shogi.Contracts.Api;
|
|
|
|
public class ReadSessionResponse
|
|
{
|
|
public Session Session { get; set; }
|
|
}
|