| 123456789101112131415161718 |
- using Abp.Application.Services.Dto;
- using Abp.AutoMapper;
- using YGNT.Exam.Authorization.Users;
- namespace YGNT.Exam.Sessions.Dto
- {
- [AutoMapFrom(typeof(User))]
- public class UserLoginInfoDto : EntityDto<long>
- {
- public string Name { get; set; }
- public string Surname { get; set; }
- public string UserName { get; set; }
- public string EmailAddress { get; set; }
- }
- }
|