roadie/RoadieLibrary/Identity/ApplicationRoleClaim.cs
Steven Hildreth 0344d1e604 WIP
2018-11-10 17:26:04 -06:00

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