CodeLiturgy.Dashboard/BlueWest.Data.Application/ApplicationRole/ApplicationRole.cs

24 lines
507 B
C#
Raw Normal View History

2022-09-12 17:57:37 +03:00
using MapTo;
2022-09-10 00:33:17 +03:00
using Microsoft.AspNetCore.Identity;
2022-09-27 20:12:13 +03:00
namespace BlueWest.Data.Application.Users
2022-09-10 00:33:17 +03:00
{
/// <inheritdoc />
2022-09-12 17:57:37 +03:00
[MapFrom(typeof(ApplicationRoleUnique))]
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 01:22:04 +03:00
}
2022-09-10 00:33:17 +03:00
}