Julien Leicher 7a9aefbefc tiny-refactors (#27)
add UnitWorkBehavior and some files moving
add Docker stuff to prepare heroku deployment
rename (Up/Down)vote
add sample for msbuild tasks
2020-12-17 12:01:11 +01:00

14 lines
240 B
C#

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