namespace Umbraco.Core.Models.Identity { /// /// EntityType that represents a user belonging to a role /// /// /// /// /// This class normally exists inside of the EntityFramework library, not sure why MS chose to explicitly put it there but we don't want /// references to that so we will create our own here /// public class IdentityUserRole { /// /// UserId for the user that is in the role /// /// public virtual TKey UserId { get; set; } /// /// RoleId for the role /// /// public virtual TKey RoleId { get; set; } } }