This commit is contained in:
2025-09-24 19:36:28 +02:00
Unverified
parent 2729199d0a
commit d3d5f8ff08
25 changed files with 723 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
namespace TimetableDesigner.API.Services.Authentication.DTO;
public class AuthenticatePasswordRequest
{
}

View File

@@ -0,0 +1,6 @@
namespace TimetableDesigner.API.Services.Authentication.DTO;
public class AuthenticateResponse
{
}

View File

@@ -0,0 +1,6 @@
namespace TimetableDesigner.API.Services.Authentication.DTO;
public class AuthenticateTokenRequest
{
}

View File

@@ -0,0 +1,6 @@
namespace TimetableDesigner.API.Services.Authentication.DTO;
public class RegisterRequest
{
}

View File

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