Added backend
This commit is contained in:
10
gswi.SMTP.Interface/ISMTPClient.cs
Normal file
10
gswi.SMTP.Interface/ISMTPClient.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System.Threading.Tasks;
|
||||
using gswi.SMTP.Model;
|
||||
|
||||
namespace gswi.SMTP.Interface
|
||||
{
|
||||
public interface ISMTPClient
|
||||
{
|
||||
Task SendEmailAsync(EMail email);
|
||||
}
|
||||
}
|
11
gswi.SMTP.Interface/gswi.SMTP.Interface.csproj
Normal file
11
gswi.SMTP.Interface/gswi.SMTP.Interface.csproj
Normal file
@@ -0,0 +1,11 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\gswi.SMTP.Model\gswi.SMTP.Model.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
Reference in New Issue
Block a user