10 lines
340 B
C#
10 lines
340 B
C#
using System.Configuration;
|
|
|
|
namespace Kreta.Core
|
|
{
|
|
public class IktatasJobConfiguration : ConfigurationSection
|
|
{
|
|
[ConfigurationProperty(nameof(AlszamosIktatasJobDelayInSec), IsRequired = true, DefaultValue = 5)]
|
|
public int AlszamosIktatasJobDelayInSec => (int)this[nameof(AlszamosIktatasJobDelayInSec)];
|
|
}
|
|
}
|