| 123456789101112131415161718 |
- namespace Abp
- {
- /// <summary>
- /// Interface to get a user identifier.
- /// </summary>
- public interface IUserIdentifier
- {
- /// <summary>
- /// Tenant Id. Can be null for host users.
- /// </summary>
- int? TenantId { get; }
- /// <summary>
- /// Id of the user.
- /// </summary>
- long UserId { get; }
- }
- }
|