Browse Source
Merge pull request #12617 from abpframework/auto-merge/rel-5-3/1067
Merge branch dev with rel-5.3
pull/12621/head
liangshiwei
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
1 deletions
-
modules/users/src/Volo.Abp.Users.Abstractions/Volo/Abp/Users/UserEto.cs
|
|
|
@ -1,10 +1,11 @@ |
|
|
|
using System; |
|
|
|
using Volo.Abp.Data; |
|
|
|
using Volo.Abp.EventBus; |
|
|
|
|
|
|
|
namespace Volo.Abp.Users; |
|
|
|
|
|
|
|
[EventName("Volo.Abp.Users.User")] |
|
|
|
public class UserEto : IUserData |
|
|
|
public class UserEto : IUserData, IHasExtraProperties |
|
|
|
{ |
|
|
|
public Guid Id { get; set; } |
|
|
|
|
|
|
|
@ -23,4 +24,6 @@ public class UserEto : IUserData |
|
|
|
public string PhoneNumber { get; set; } |
|
|
|
|
|
|
|
public bool PhoneNumberConfirmed { get; set; } |
|
|
|
|
|
|
|
public ExtraPropertyDictionary ExtraProperties { get; set; } |
|
|
|
} |
|
|
|
|