Files
BeReadyBackend/BeReadyBackend/DTO/Groups/GetUserGroupDto.cs
T

9 lines
221 B
C#

namespace BeReadyBackend.DTO.Groups;
public class GetUserGroupDto
{
public int Id { get; set; }
public string? Username { get; set; }
public string? Grade { get; set; }
public int Score { get; set; }
}