2025-01-16 16:25:21 +01:00

34 lines
752 B
C#

namespace Application.DataTransferObjects.Player;
public class PlayerDto
{
public Guid Id { get; set; }
public Guid RankId { get; set; }
public Guid AllianceId { get; set; }
public required string PlayerName { get; set; }
public int Level { get; set; }
public required string RankName { get; set; }
public int NotesCount { get; set; }
public int AdmonitionsCount { get; set; }
public DateTime CreatedOn { get; set; }
public required string CreatedBy { get; set; }
public DateTime? ModifiedOn { get; set; }
public string? ModifiedBy { get; set; }
public bool IsDismissed { get; set; }
public DateTime? DismissedAt { get; set; }
public string? DismissalReason { get; set; }
}