mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
13 lines
235 B
C#
13 lines
235 B
C#
namespace Application.DataTransferObjects.VsDuel;
|
|
|
|
public class VsDuelDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public int WeeklyPoints { get; set; }
|
|
|
|
public int Year { get; set; }
|
|
|
|
public int CalendarWeek { get; set; }
|
|
|
|
} |