| 1234567891011121314151617181920 |
- using Abp.Application.Services.Dto;
- using Abp.AutoMapper;
- using VberZero.BaseSystem.Users;
- namespace VberZero.AppService.Authorization.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; }
- public string AvatarPath { get; set; }
- public VzDefinition.GenderType Gender { get; set; }
- }
|