mirror of
https://github.com/sphildreth/roadie
synced 2024-11-23 12:43:13 +00:00
14 lines
374 B
C#
14 lines
374 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; }
|
|||
|
}
|
|||
|
}
|