add UnitWorkBehavior and some files moving add Docker stuff to prepare heroku deployment rename (Up/Down)vote add sample for msbuild tasks
14 lines
240 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |