init
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using System.Configuration;
|
||||
|
||||
namespace Kreta.Core
|
||||
{
|
||||
public class IktatoServiceConfiguration : ConfigurationSection
|
||||
{
|
||||
[ConfigurationProperty(nameof(EndpointAddress), IsRequired = true)]
|
||||
public string EndpointAddress => (string)this[nameof(EndpointAddress)];
|
||||
|
||||
[ConfigurationProperty(nameof(Username), IsRequired = true)]
|
||||
public string Username => (string)this[nameof(Username)];
|
||||
|
||||
[ConfigurationProperty(nameof(Password), IsRequired = true)]
|
||||
public string Password => (string)this[nameof(Password)];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user