2020-12-11 15:23:16 +01:00

13 lines
202 B
C#

using System;
using Microsoft.AspNetCore.Identity;
namespace HN.Infrastructure
{
public sealed class User : IdentityUser<Guid>
{
public User(string userName) : base(userName)
{
}
}
}