feat(Auth): Erstellung eines Authentifizierungsmodells anstelle der direkten Verwendung des Zugriffscodes.

This commit is contained in:
Developer 02
2024-11-28 23:38:51 +01:00
parent 0469f057c9
commit f1ca1e9067
3 changed files with 7 additions and 3 deletions

View File

@@ -0,0 +1,4 @@
namespace EnvelopeGenerator.Web.Models
{
public record Auth(string? AccessCode = null);
}