presence_new/domain/Requests/AddStudentRequest.cs
2024-12-13 10:21:14 +03:00

12 lines
222 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace domain.Requests
{
public class AddStudentRequest
{
public string StudentName { get; set; }
}
}