ENEI2019-Public/api/Models/Role.cs

11 lines
217 B
C#
Executable File

using System.Collections.Generic;
using Microsoft.AspNetCore.Identity;
namespace api.Models
{
public class Role : IdentityRole <int>
{
public ICollection<UserRole> UserRoles{get;set;}
}
}