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