mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
12 lines
307 B
C#
12 lines
307 B
C#
namespace Application.DataTransferObjects.CustomEventLeaderboard;
|
|
|
|
public class LeaderboardPointAndParticipationEventDto
|
|
{
|
|
public required string PlayerName { get; set; }
|
|
|
|
public long Points { get; set; }
|
|
|
|
public int Participations { get; set; }
|
|
|
|
public double TotalPoints { get; set; }
|
|
} |