Files
security/src/LiteCharmsSecurity.Admin.EntityFramework.Shared/Entities/Identity/UserIdentityRoleClaim.cs
T
2026-06-05 22:07:25 +02:00

12 lines
309 B
C#

// Copyright (c) Jan Škoruba. All Rights Reserved.
// Licensed under the Apache License, Version 2.0.
using Microsoft.AspNetCore.Identity;
namespace LiteCharmsSecurity.Admin.EntityFramework.Shared.Entities.Identity
{
public class UserIdentityRoleClaim : IdentityRoleClaim<string>
{
}
}