13 lines
421 B
C#
13 lines
421 B
C#
using System.Configuration;
|
|
|
|
namespace Kreta.Core
|
|
{
|
|
public class KretaJobConfig : ConfigurationSection
|
|
{
|
|
[ConfigurationProperty(nameof(IsEmailEnabled), IsRequired = true)]
|
|
public bool IsEmailEnabled => (bool)this[nameof(IsEmailEnabled)];
|
|
|
|
[ConfigurationProperty(nameof(DefaultEmail), IsRequired = true)]
|
|
public string DefaultEmail => (string)this[nameof(DefaultEmail)];
|
|
}
|
|
}
|