Files
SPMega/backend/SpMega.Backend/Authetication/JwtAuthenticationSchemeOptions.cs
T
Dmitrii eee0d44c92
Java CI / build (push) Successful in 1m56s
Add backend structure with Docker support and initial configuration files
Signed-off-by: Dmitrii <computer@yawaflua.tech>

Took 4 hours 25 minutes
2026-06-28 08:20:33 +03:00

8 lines
215 B
C#

using Microsoft.AspNetCore.Authentication;
namespace SpMega.Backend.Authetication;
public class JwtAuthenticationSchemeOptions : AuthenticationSchemeOptions
{
public const string DefaultScheme = "JwtScheme";
}