mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
10 lines
236 B
C#
10 lines
236 B
C#
namespace Application.DataTransferObjects.VsDuelParticipant;
|
|
|
|
public class VsDuelParticipantDetailDto
|
|
{
|
|
public Guid PlayerId { get; set; }
|
|
|
|
public DateTime EventDate { get; set; }
|
|
|
|
public long WeeklyPoints { get; set; }
|
|
} |