// Copyright (c) Microsoft Corporation, Inc. All rights reserved. // Licensed under the MIT License, Version 2.0. See License.txt in the project root for license information. namespace Microsoft.AspNet.Identity.Compat { public class IdentityRoleClaim : IdentityRoleClaim { } /// /// EntityType that represents one specific role claim /// /// public class IdentityRoleClaim { /// /// Primary key /// public virtual int Id { get; set; } /// /// User Id for the role this claim belongs to /// public virtual TKey RoleId { get; set; } /// /// Claim type /// public virtual string ClaimType { get; set; } /// /// Claim value /// public virtual string ClaimValue { get; set; } } }