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