29 lines
898 B
C#
29 lines
898 B
C#
// 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
|
|
{
|
|
/// <summary>
|
|
/// EntityType that represents a user belonging to a role
|
|
/// </summary>
|
|
public class PocoUserRole : PocoUserRole<string> { }
|
|
|
|
/// <summary>
|
|
/// EntityType that represents a user belonging to a role
|
|
/// </summary>
|
|
/// <typeparam name="TKey"></typeparam>
|
|
public class PocoUserRole<TKey> where TKey : IEquatable<TKey>
|
|
{
|
|
/// <summary>
|
|
/// UserId for the user that is in the role
|
|
/// </summary>
|
|
public virtual TKey UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// RoleId for the role
|
|
/// </summary>
|
|
public virtual TKey RoleId { get; set; }
|
|
}
|
|
} |