presence_new/domain/Requests/AddStudentRequest.cs

12 lines
222 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 AddStudentRequest
{
public string StudentName { get; set; }
}
}