webdav portal config refactoring

This commit is contained in:
vfedosevich 2015-02-24 23:17:49 -08:00
parent 82a9151241
commit 4122caa16d
21 changed files with 39 additions and 2841 deletions

View file

@ -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; }
}
}
}