squash a bunch of commits
This commit is contained in:
10
Shogi.Contracts/Api/Commands/CreateSessionCommand.cs
Normal file
10
Shogi.Contracts/Api/Commands/CreateSessionCommand.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Shogi.Contracts.Api;
|
||||
|
||||
public class CreateSessionCommand
|
||||
{
|
||||
[Required]
|
||||
public string Name { get; set; } = string.Empty;
|
||||
public bool IsPrivate { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user