kreta/Kreta.WebApi/eUgyintezes/Kreta.eUgyintezes.WebApi/Infrastructure/IdpConfiguration.cs
2024-03-13 00:33:46 +01:00

10 lines
327 B
C#

using System.Configuration;
namespace Kreta.Eugyintezes.WebApi.Infrastructure
{
public class IdpConfiguration : ConfigurationSection, IIdpConfiguration
{
[ConfigurationProperty(nameof(TokenIssuerUrl), IsRequired = true)]
public string TokenIssuerUrl => (string)this[nameof(TokenIssuerUrl)];
}
}