CodeLiturgy.Dashboard/BlueWest.Api/Users/Roles/ApplicationRoleClaim.cs

17 lines
406 B
C#
Raw Normal View History

2022-09-10 00:33:17 +03:00
using System;
using Microsoft.AspNetCore.Identity;
namespace BlueWest.WebApi.Context.Users;
/// <inheritdoc />
public class ApplicationRoleClaim : IdentityRoleClaim<string>
{
2022-09-11 01:22:04 +03:00
public sealed override int Id { get; set; }
public sealed override string RoleId { get; set; }
public sealed override string ClaimType { get; set; }
public sealed override string ClaimValue { get; set; }
2022-09-10 00:33:17 +03:00
}