12 lines
301 B
C#
12 lines
301 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 UserIdentityUserClaim : IdentityUserClaim<string>
|
|
{
|
|
}
|
|
}
|