2024-11-18 12:42:33 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace domain.Models
|
|
|
|
|
{
|
2024-11-20 09:15:21 +00:00
|
|
|
|
public class GroupWithStudentsDto
|
2024-11-18 12:42:33 +00:00
|
|
|
|
{
|
|
|
|
|
public string GroupName { get; set; }
|
|
|
|
|
public List<string> Students { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|