new event queue adding, register endpoint finished

This commit is contained in:
2026-01-19 03:15:01 +01:00
Unverified
parent 44eb5801fa
commit a01e8666a3
9 changed files with 54 additions and 55 deletions

View File

@@ -0,0 +1,6 @@
namespace TimetableDesigner.Backend.Services.Authentication.DTO.Events;
public record RegisterEvent(
long Id,
string Email
);

View File

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