mirror of https://github.com/abpframework/abp.git
6 changed files with 80 additions and 8 deletions
@ -0,0 +1,27 @@ |
|||
using System; |
|||
using Volo.Abp.EventBus; |
|||
|
|||
namespace Volo.Abp.Users |
|||
{ |
|||
[EventName("Volo.Abp.Users.User")] |
|||
public class UserEto : IUserData |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
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 bool EmailConfirmed { get; set; } |
|||
|
|||
public string PhoneNumber { get; set; } |
|||
|
|||
public bool PhoneNumberConfirmed { get; set; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue