| 1234567891011121314151617181920212223 |
- using System.Collections.Generic;
- using System.Security.Claims;
- using Abp.Runtime.Session;
- namespace IwbZero.Runtime.Session
- {
- public interface IIwbSession : IAbpSession
- {
- string UserName { get; }
- string RealName { get; }
- string PhoneNumber { get; }
- string EmailAddress { get; }
- string AccountNo { get; }
- string AvatarImagePath { get; }
- int? UserType { get; }
- int? AccountType { get; }
- List<string> UserRoles { get; }
- List<string> UserRoleIds { get; }
- Claim GetClaim(string type);
- }
- }
|