AppUser.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System;
  2. using Volo.Abp.Domain.Entities.Auditing;
  3. using Volo.Abp.Users;
  4. namespace BaseService.Users
  5. {
  6. //public class AppUser : FullAuditedAggregateRoot<Guid>, IUser
  7. //{
  8. // #region Base properties
  9. // /* These properties are shared with the IdentityUser entity of the Identity module.
  10. // * Do not change these properties through this class. Instead, use Identity module
  11. // * services (like IdentityUserManager) to change them.
  12. // * So, this properties are designed as read only!
  13. // */
  14. // public virtual Guid? TenantId { get; private set; }
  15. // public virtual string UserName { get; private set; }
  16. // public virtual string Name { get; private set; }
  17. // public virtual string Surname { get; private set; }
  18. // public virtual string Email { get; private set; }
  19. // public virtual bool EmailConfirmed { get; private set; }
  20. // public virtual string PhoneNumber { get; private set; }
  21. // public virtual bool PhoneNumberConfirmed { get; private set; }
  22. // #endregion
  23. // //public Guid OrgId { get; set; }
  24. // //public bool Enable { get; set; }
  25. // private AppUser()
  26. // {
  27. // }
  28. //}
  29. }