mirror of
https://github.com/sphildreth/roadie
synced 2024-11-22 20:23:16 +00:00
19 lines
No EOL
528 B
C#
19 lines
No EOL
528 B
C#
using Microsoft.AspNetCore.Identity;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Roadie.Library.Identity
|
|
{
|
|
[Table("usersInRoles")]
|
|
public class ApplicationUserRole : IdentityUserRole<int>
|
|
{
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int Id { get; set; }
|
|
|
|
public virtual ApplicationRole Role { get; set; }
|
|
|
|
[Column("userRoleId")]
|
|
public override int RoleId { get; set; }
|
|
|
|
public virtual ApplicationUser User { get; set; }
|
|
}
|
|
} |