presence/domain/Request/AddGroupRequest.cs

15 lines
327 B
C#
Raw Permalink Normal View History

2024-12-05 07:31:49 +00:00
using System;
2024-11-26 05:09:12 +00:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace domain.Request
{
public class AddGroupRequest
{
public string Name { get; set; }
2024-12-05 07:31:49 +00:00
public List<AddStudentRequest> Students { get; set; } = new List<AddStudentRequest>();
2024-11-26 05:09:12 +00:00
}
}