using System.Collections.Generic; namespace zero.Core.Entities { public interface IIdentityUserRole : IAppAwareEntity, IZeroEntity { /// /// The user's claims, for use in claims-based authentication. /// List Claims { get; set; } } }