ApplicationUserRole.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Tools.Identity.EF.Entities;
namespace WebFileServ.Model.Entities.Identity
{
public class ApplicationUserRole
: BaseUserRole<
Guid,
ApplicationUser,
ApplicationRole
>
{
}
}