Tomasi - Developing a8a032c1d7 ..
2024-10-10 07:43:07 +02:00

18 lines
387 B
C#

using System.ComponentModel.DataAnnotations;
namespace Application.DataTransferObjects.Player;
public class UpdatePlayerDto
{
public Guid Id{ get; set; }
[Required]
[MaxLength(250)]
public required string PlayerName { get; set; }
[Required]
public Guid RankId { get; set; }
[Required]
[MaxLength(3)]
public required string Level { get; set; }
}