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