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

10 lines
149 B
C#

using System;
using Microsoft.AspNetCore.Identity;
namespace HN.Infrastructure.Identity
{
public sealed class Role : IdentityRole<Guid>
{
}
}