adds aspnet.identity

This commit is contained in:
Paul Schneider 2021-04-25 12:12:50 +01:00
commit dc37c9a9f0
26 changed files with 1106 additions and 122 deletions

10
Interfaces/IMailer.cs Normal file
View file

@ -0,0 +1,10 @@
using System.Threading.Tasks;
namespace nuget_host.Interfaces
{
public interface IMailer
{
Task SendMailAsync(string name, string email, string subjet, string body);
}
}