Tomasi - Developing 35e83c4735 beta 0.0.3
2024-11-26 08:43:01 +01:00

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; }
}