// 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.AspNet.Identity.Test { public class TestUserClaim : TestUserClaim { } /// /// EntityType that represents one specific user claim /// /// public class TestUserClaim where TKey : IEquatable { /// /// Primary key /// public virtual int Id { get; set; } /// /// User Id for the user who owns this claim /// public virtual TKey UserId { get; set; } /// /// Claim type /// public virtual string ClaimType { get; set; } /// /// Claim value /// public virtual string ClaimValue { get; set; } } }