using System; using System.Collections.Generic; using System.Configuration; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WebsitePanel.WebDav.Core.Config.WebConfigSections { public class WebdavRootElement : ConfigurationElement { private const string ValueKey = "value"; [ConfigurationProperty(ValueKey, IsKey = true, IsRequired = true)] public string Value { get { return (string)this[ValueKey]; } set { this[ValueKey] = value; } } } }