PresenceApp/domain/Request/AddGroupWithStudent.cs

15 lines
346 B
C#
Raw Permalink Normal View History

2024-12-04 23:32:04 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace domain.Request
{
public class AddGroupWithStudentsRequest
{
public AddGroupRequest addGroupRequest { get; set; }
public IEnumerable<AddStudentRequest> AddStudentRequests { get; set; }
}
}