21 lines
571 B
C#
21 lines
571 B
C#
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; }
|
|
}
|
|
}
|
|
}
|