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