UserLoginInfoDto.cs 499 B

1234567891011121314151617181920
  1. using Abp.Application.Services.Dto;
  2. using Abp.AutoMapper;
  3. using VberZero.BaseSystem.Users;
  4. namespace VberZero.AppService.Authorization.Sessions.Dto;
  5. [AutoMapFrom(typeof(User))]
  6. public class UserLoginInfoDto : EntityDto<long>
  7. {
  8. public string Name { get; set; }
  9. public string Surname { get; set; }
  10. public string UserName { get; set; }
  11. public string EmailAddress { get; set; }
  12. public string AvatarPath { get; set; }
  13. public VzDefinition.GenderType Gender { get; set; }
  14. }