Initial commit

This commit is contained in:
Developer 02
2024-02-23 14:42:30 +01:00
parent 02a197e535
commit 881a42b709
15 changed files with 171 additions and 45 deletions

View File

@@ -0,0 +1,6 @@
namespace EnvelopeGenerator.Application.DTOs
{
public record SignInDto(
string Password
);
}

View File

@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>