presence_new/domain/Requests/AddGroupWithStudentRequest.cs

13 lines
323 B
C#
Raw Permalink Normal View History

2024-12-13 07:21:14 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace domain.Requests
{
public class AddGroupWithStudentRequest
{
public AddGroupRequest addGroupRequest { get; set; }
public IEnumerable<AddStudentRequest> AddStudentRequests { get; set; }
}
}