Tomasi - Developing 19182e7b36 - Implemented pagination for all tables to improve usability and navigation.
- Expanded the zombie siege table to display all waves survived by the entire alliance
2025-01-28 12:05:50 +01:00

24 lines
532 B
C#

namespace Application.DataTransferObjects.ZombieSiege;
public class ZombieSiegeDto
{
public Guid Id { get; set; }
public int Level { get; set; }
public int TotalLevel20Players { get; set; }
public int TotalWavesSurvived { get; set; }
public Guid AllianceId { get; set; }
public DateTime EventDate { get; set; }
public required string CreatedBy { get; set; }
public DateTime? ModifiedOn { get; set; }
public string? ModifiedBy { get; set; }
public int AllianceSize { get; set; }
}