using Gameboard.ShogiUI.Sockets.ServiceModels.Types; using System.ComponentModel.DataAnnotations; namespace Gameboard.ShogiUI.Sockets.ServiceModels.Api { public class PostMove { [Required] public Move Move { get; set; } } }