9 lines
148 B
C#
9 lines
148 B
C#
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace ConstructorApp.EntityLayer.Entities
|
|
{
|
|
public class AppRole : IdentityRole<int>
|
|
{
|
|
}
|
|
}
|