mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
12 lines
448 B
C#
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; }
|
|
} |