using System.Collections.Generic; namespace zero.Core.Entities { public abstract class ZeroIdentityRole : ZeroEntity { /// /// The role's claims, for use in claims-based authentication. /// public List Claims { get; set; } = new(); } }