2020-11-04 01:25:38 +01:00
|
|
|
using System.Collections.Generic;
|
2020-11-11 13:44:52 +01:00
|
|
|
using zero.Core.Entities;
|
2020-11-04 01:25:38 +01:00
|
|
|
|
2020-11-11 13:44:52 +01:00
|
|
|
namespace zero.Core.Identity
|
2020-11-04 01:25:38 +01:00
|
|
|
{
|
2020-11-11 13:44:52 +01:00
|
|
|
public interface IIdentityUserRole : IZeroEntity
|
2020-11-04 01:25:38 +01:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The user's claims, for use in claims-based authentication.
|
|
|
|
|
/// </summary>
|
|
|
|
|
List<IUserClaim> Claims { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|