11 lines
227 B
C#
11 lines
227 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Shogi.Contracts.Api;
|
|
|
|
public class CreateSessionCommand
|
|
{
|
|
[Required]
|
|
public string Name { get; set; } = string.Empty;
|
|
public bool IsPrivate { get; set; }
|
|
}
|