mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
30 lines
663 B
C#
30 lines
663 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Application.DataTransferObjects.CustomEvent;
|
|
|
|
public class CreateCustomEventDto
|
|
{
|
|
[Required]
|
|
[MaxLength(150)]
|
|
public required string Name { get; set; }
|
|
|
|
[Required]
|
|
public bool IsPointsEvent { get; set; }
|
|
|
|
[Required]
|
|
public bool IsParticipationEvent { get; set; }
|
|
|
|
[Required]
|
|
[MaxLength(500)]
|
|
public required string Description { get; set; }
|
|
|
|
[Required]
|
|
public Guid AllianceId { get; set; }
|
|
|
|
public Guid? CustomEventCategoryId { get; set; }
|
|
|
|
[Required]
|
|
public required string EventDate { get; set; }
|
|
|
|
public bool IsInProgress { get; set; }
|
|
} |