// 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 a user belonging to a role
///
public class TestUserRole : TestUserRole { }
///
/// EntityType that represents a user belonging to a role
///
///
public class TestUserRole where TKey : IEquatable
{
///
/// 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; }
}
}