webdav portal config refactoring
This commit is contained in:
parent
82a9151241
commit
4122caa16d
21 changed files with 39 additions and 2841 deletions
|
@ -0,0 +1,16 @@
|
|||
using System.Configuration;
|
||||
|
||||
namespace WebsitePanel.WebDav.Core.Config.WebConfigSections
|
||||
{
|
||||
public class EnterpriseServerElement : ConfigurationElement
|
||||
{
|
||||
private const string ValueKey = "url";
|
||||
|
||||
[ConfigurationProperty(ValueKey, IsKey = true, IsRequired = true)]
|
||||
public string Value
|
||||
{
|
||||
get { return (string)this[ValueKey]; }
|
||||
set { this[ValueKey] = value; }
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue