11 lines
312 B
C#
11 lines
312 B
C#
using System.Configuration;
|
|
using Kreta.Core.KIR.Infrastructure.Interface;
|
|
|
|
namespace Kreta.Core
|
|
{
|
|
public class KirConfiguration : ConfigurationSection, IKirConfiguration
|
|
{
|
|
[ConfigurationProperty(nameof(Url), IsRequired = true)]
|
|
public string Url => (string)this[nameof(Url)];
|
|
}
|
|
}
|