// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
namespace Microsoft.AspNetCore.Identity.Test
{
///
/// EntityType that represents one specific role claim
///
public class TestRoleClaim : TestRoleClaim { }
///
/// EntityType that represents one specific role claim
///
///
public class TestRoleClaim where TKey : IEquatable
{
///
/// 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; }
}
}