using System.ComponentModel.DataAnnotations; namespace Shogi.Contracts.Api; public class CreateSessionCommand { [Required] public string Name { get; set; } = string.Empty; public bool IsPrivate { get; set; } }