10 lines
183 B
C#
10 lines
183 B
C#
|
using System;
|
||
|
using Microsoft.AspNetCore.Identity;
|
||
|
|
||
|
namespace BlueWest.WebApi.Context.Users;
|
||
|
|
||
|
/// <inheritdoc />
|
||
|
public class ApplicationRoleClaim : IdentityRoleClaim<string>
|
||
|
{
|
||
|
|
||
|
}
|