using System.Collections.Generic; namespace zero.Core.Entities { public class UserRole : DatabaseEntity, IUserRole { /// public string Description { get; set; } /// public string Icon { get; set; } /// public List Claims { get; set; } = new List(); } public interface IUserRole : IDatabaseEntity { /// /// Additional description /// string Description { get; set; } /// /// Displayed icon alongside name /// string Icon { get; set; } /// /// The user's claims, for use in claims-based authentication. /// List Claims { get; set; } } }