7 lines
176 B
C#
7 lines
176 B
C#
|
using System;
|
||
|
using Microsoft.AspNetCore.Identity;
|
||
|
|
||
|
namespace BlueWest.WebApi.Context.Users;
|
||
|
|
||
|
/// <inheritdoc />
|
||
|
public class ApplicationUserRole : IdentityUserRole<string> { }
|