9 lines
221 B
C#
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; }
|
|
} |