2022-09-10 00:33:17 +03:00
|
|
|
using Microsoft.AspNetCore.Identity;
|
|
|
|
|
|
|
|
namespace BlueWest.WebApi.Context.Users
|
|
|
|
{
|
|
|
|
/// <inheritdoc />
|
|
|
|
public class ApplicationRole : IdentityRole<string>
|
2022-09-11 01:22:04 +03:00
|
|
|
{
|
|
|
|
/// <inheritdoc />
|
|
|
|
public sealed override string Id { get; set; }
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public sealed override string Name { get; set; }
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public sealed override string NormalizedName { get; set; }
|
|
|
|
|
|
|
|
}
|
2022-09-10 00:33:17 +03:00
|
|
|
}
|
|
|
|
|