PresenceApp/domain/Request/AddStudentRequest.cs

14 lines
244 B
C#
Raw 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 AddStudentRequest
{
public string StudentName { get; set; }
}
}