10 lines
327 B
C#
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)];
|
|
}
|
|
}
|