mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
22 lines
434 B
C#
22 lines
434 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Application.DataTransferObjects.MarshalGuard;
|
|
|
|
public class CreateMarshalGuardDto
|
|
{
|
|
[Required]
|
|
public Guid AllianceId { get; set; }
|
|
|
|
[Required]
|
|
public int RewardPhase { get; set; }
|
|
|
|
[Required]
|
|
public int Level { get; set; }
|
|
|
|
[Required]
|
|
public int AllianceSize { get; set; }
|
|
|
|
[Required]
|
|
public required string EventDate { get; set; }
|
|
|
|
} |