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

18 lines
643 B
C#
Raw Permalink Normal View History

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;
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;
}