Files
2025-05-01 15:18:30 +03:00

9 lines
148 B
C#

using Microsoft.AspNetCore.Identity;
namespace ConstructorApp.EntityLayer.Entities
{
public class AppRole : IdentityRole<int>
{
}
}