2022-09-12 17:57:37 +03:00
|
|
|
using MapTo;
|
2022-09-10 00:33:17 +03:00
|
|
|
using Microsoft.AspNetCore.Identity;
|
|
|
|
|
2022-11-18 03:15:53 +03:00
|
|
|
namespace CodeLiturgy.Data.Application.Users
|
2022-09-10 00:33:17 +03:00
|
|
|
{
|
|
|
|
/// <inheritdoc />
|
2022-09-12 17:57:37 +03:00
|
|
|
|
|
|
|
public partial 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-11 20:45:26 +03:00
|
|
|
|
2022-09-11 01:22:04 +03:00
|
|
|
}
|
2022-09-10 00:33:17 +03:00
|
|
|
}
|
|
|
|
|