5 changed files with 43 additions and 0 deletions
@ -0,0 +1,20 @@ |
|||
namespace Lion.AbpPro.BasicManagement.Users.Dtos; |
|||
|
|||
public class MyProfileOutput |
|||
{ |
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string UserName { get; set; } |
|||
|
|||
public string Name { get; set; } |
|||
|
|||
public string Surname { get; set; } |
|||
|
|||
public string Email { get; set; } |
|||
|
|||
public string PhoneNumber { get; set; } |
|||
|
|||
public bool IsActive { get; set; } |
|||
|
|||
public bool TwoFactorEnabled { get; set; } |
|||
} |
|||
Loading…
Reference in new issue