Tomasi - Developing 2e113e5aae change mvp formula
2025-01-09 09:47:29 +01:00

12 lines
448 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 bool IsOldestVsDuelParticipated { get; set; }
public decimal MvpPoints { get; set; }
}