UTB.Eshop_2021/UTB.Eshop.Web/Models/Identity/Role.cs

15 lines
321 B
C#

using Microsoft.AspNetCore.Identity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace UTB.Eshop.Web.Models.Identity
{
public class Role : IdentityRole<int>
{
public Role() : base() { }
public Role(string role) : base(role) { }
}
}