Presence_Desktop/domain/Models/GroupWithStudentsDto.cs

9 lines
178 B
C#
Raw Normal View History

2024-12-23 11:20:09 +00:00
namespace domain.Models
{
public class GroupWithStudentsDto
{
public string GroupName { get; set; }
public List<string> Students { get; set; }
}
}