14 lines
231 B
C#
14 lines
231 B
C#
using System;
|
|
using HN.Application;
|
|
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace HN.Infrastructure
|
|
{
|
|
public sealed class User : IdentityUser<Guid>, IUser
|
|
{
|
|
public User(string userName) : base(userName)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |