using System.Collections.Generic; namespace domain.Request { public class AddStudentsToGroupRequest { public List Students { get; set; } = new List(); } }