mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
19 lines
424 B
C#
19 lines
424 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Application.DataTransferObjects.CustomEventCategory;
|
|
|
|
public class CreateCustomEventCategoryDto
|
|
{
|
|
[Required]
|
|
public Guid AllianceId { get; set; }
|
|
|
|
[Required]
|
|
[MaxLength(250)]
|
|
public required string Name { get; set; }
|
|
|
|
[Required]
|
|
public bool IsPointsEvent { get; set; }
|
|
|
|
[Required]
|
|
public bool IsParticipationEvent { get; set; }
|
|
} |