ENEI2019-Public/api/Models/Role.cs

11 lines
217 B
C#
Raw Normal View History

2018-12-12 15:17:08 +00:00
using System.Collections.Generic;
using Microsoft.AspNetCore.Identity;
namespace api.Models
{
public class Role : IdentityRole <int>
{
public ICollection<UserRole> UserRoles{get;set;}
}
}