add open telemetry and refactor setup

This commit is contained in:
2024-01-23 13:10:16 +01:00
parent 8abe228d89
commit 65132fc7c6
5 changed files with 260 additions and 19 deletions
+10
View File
@@ -0,0 +1,10 @@
namespace Kemkas.Web.Config;
public class ExternalAuthOptions
{
public string? ClientId { get; set; }
public string? ClientSecret { get; set; }
public bool IsValid() => ClientId != null && ClientSecret != null;
}