Api-PWA/DocuMed.Domain/Dtos/SmallDtos/StudentSDto.cs

18 lines
642 B
C#

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;
public Guid SectionId { get; set; }
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;
}