10 lines
186 B
C#
10 lines
186 B
C#
using System.Collections.Generic;
|
|
|
|
namespace domain.Request
|
|
{
|
|
public class AddStudentsToGroupRequest
|
|
{
|
|
public List<int> Students { get; set; } = new List<int>();
|
|
}
|
|
}
|