2025-01-07 09:44:06 +01:00

11 lines
391 B
C#

namespace Application.DataTransferObjects.Player;
public class PlayerMvpDto
{
public required string PlayerName { get; set; }
public required string Rank { get; set; }
public long TotalVsDuelPoints { get; set; }
public int MarshalGuardParticipationCount { get; set; }
public int DesertStormParticipationCount { get; set; }
public decimal MvpPoints { get; set; }
}