Files
homework-backend/Homework/JwtSettings.cs
2026-03-28 21:49:58 +01:00

7 lines
187 B
C#

public class JwtSettings
{
public string Key { get; set; }
public string Issuer { get; set; }
public string Audience { get; set; }
public int ExpireMinutes { get; set; }
}