Files
kemkas-gh-mirror/Kemkas.Web/Config/ExternalAuthOptions.cs

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;
}