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 UserRoles { get; } List UserRoleIds { get; } Claim GetClaim(string type); } }