mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
14 lines
312 B
C#
14 lines
312 B
C#
namespace Application.DataTransferObjects.VsDuelParticipant;
|
|
|
|
public class VsDuelParticipantDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public Guid PlayerId { get; set; }
|
|
|
|
public Guid VsDuelId { get; set; }
|
|
|
|
public long WeeklyPoints { get; set; }
|
|
|
|
public required string PlayerName { get; set; }
|
|
} |