mirror of
https://github.com/morbalint/kemkas-backend.git
synced 2026-07-17 21:23:46 +00:00
10 lines
231 B
C#
10 lines
231 B
C#
namespace Kemkas.Web.Config;
|
|
|
|
public class ExternalAuthOptions
|
|
{
|
|
public string? ClientId { get; set; }
|
|
|
|
public string? ClientSecret { get; set; }
|
|
|
|
public bool IsValid() => ClientId != null && ClientSecret != null;
|
|
} |