2024-09-28 12:34:36 +03:30
|
|
|
|
namespace DocuMed.Domain.Dtos.SmallDtos;
|
|
|
|
|
|
|
|
|
|
|
|
public class StudentSDto : BaseDto<StudentSDto,Student>
|
|
|
|
|
|
{
|
|
|
|
|
|
public string StudentId { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
public Guid UniversityId { get; set; }
|
|
|
|
|
|
public string UniversityName { get; set; } = string.Empty;
|
|
|
|
|
|
|
2025-01-12 12:16:24 +03:30
|
|
|
|
public Guid? SectionId { get; set; }
|
2024-09-28 12:34:36 +03:30
|
|
|
|
public string SectionName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
public Guid UserId { get; set; }
|
|
|
|
|
|
public string PhoneNumber { get; set; } = string.Empty;
|
|
|
|
|
|
public string FirstName { get; set; } = string.Empty;
|
|
|
|
|
|
public string LastName { get; set; } = string.Empty;
|
|
|
|
|
|
public string NationalId { get; set; } = string.Empty;
|
|
|
|
|
|
}
|