Tomasi - Developing a8a032c1d7 ..
2024-10-10 07:43:07 +02:00

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