mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
19 lines
393 B
C#
19 lines
393 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Application.DataTransferObjects.Alliance;
|
|
|
|
public class UpdateAllianceDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
[Required]
|
|
[MaxLength(200)]
|
|
public required string Name { get; set; }
|
|
|
|
[Required]
|
|
[MaxLength(5)]
|
|
public required string Abbreviation { get; set; }
|
|
|
|
[Required]
|
|
public int Server { get; set; }
|
|
} |