roadie/Roadie.Api.Library/Identity/ApplicationRoleClaim.cs
2019-07-03 11:21:29 -05:00

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; }
}
}