Presence_Desktop/domain/Models/GroupWithStudentsDto.cs
2024-12-23 14:20:09 +03:00

9 lines
178 B
C#

namespace domain.Models
{
public class GroupWithStudentsDto
{
public string GroupName { get; set; }
public List<string> Students { get; set; }
}
}