9 lines
169 B
C#
9 lines
169 B
C#
using Common.Dtos.Common;
|
|
|
|
namespace Common.Dtos.Student;
|
|
|
|
public class CreateStudentResponse : BaseResponse
|
|
{
|
|
public string? CreateStudentResult { get; set; }
|
|
}
|