9 lines
178 B
C#
9 lines
178 B
C#
|
namespace domain.Models
|
|||
|
{
|
|||
|
public class GroupWithStudentsDto
|
|||
|
{
|
|||
|
public string GroupName { get; set; }
|
|||
|
public List<string> Students { get; set; }
|
|||
|
}
|
|||
|
}
|