mirror of
https://github.com/sphildreth/roadie
synced 2024-11-29 07:30:21 +00:00
13 lines
No EOL
366 B
C#
13 lines
No EOL
366 B
C#
using Microsoft.AspNetCore.Identity;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Roadie.Library.Identity
|
|
{
|
|
[Table("userRoleClaims")]
|
|
public class ApplicationRoleClaim : IdentityRoleClaim<int>
|
|
{
|
|
public virtual ApplicationRole Role { get; set; }
|
|
|
|
[Column("userRoleId")] public override int RoleId { get; set; }
|
|
}
|
|
} |