presence/domain/Request/AddStudentsToGroupRequest.cs

10 lines
186 B
C#
Raw Permalink Normal View History

2024-12-05 07:31:49 +00:00
using System.Collections.Generic;
namespace domain.Request
{
public class AddStudentsToGroupRequest
{
public List<int> Students { get; set; } = new List<int>();
}
}