using System; using HN.Application; using Microsoft.AspNetCore.Identity; namespace HN.Infrastructure.Identity { public sealed class User : IdentityUser, IUser { public User(string userName) : base(userName) { } } }