presence/domain/Request/AddStudentRequest.cs
2024-11-26 08:09:12 +03:00

18 lines
336 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace domain.Request
{
public class AddStudentRequest
{
public string LastName { get; set; }
public string FirstName { get; set; }
public string Patronymic { get; set; }
}
}