Initial version

This commit is contained in:
2026-06-09 22:27:38 +02:00
parent 5afbf3b01c
commit 5ff2ac8941
57 changed files with 2343 additions and 98 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace EonaCat.gRPC.Api.Helpers;
public class AppSettings
{
public string Secret { get; set; } = null!;
public int Validity { get; set; }
public string Issuer { get; set; } = null!;
public string Audience { get; set; } = null!;
}