Files
Shogi/Shogi.Api/Repositories/Dto/SessionDto.cs

6 lines
132 B
C#

namespace Shogi.Api.Repositories.Dto;
public readonly record struct SessionDto(string Name, string Player1, string Player2)
{
}