16 lines
No EOL
449 B
C#
16 lines
No EOL
449 B
C#
using System.Configuration;
|
|
|
|
namespace WebsitePanel.WebDav.Core.Config.WebConfigSections
|
|
{
|
|
public class UserDomainElement : ConfigurationElement
|
|
{
|
|
private const string ValueKey = "value";
|
|
|
|
[ConfigurationProperty(ValueKey, IsKey = true, IsRequired = true)]
|
|
public string Value
|
|
{
|
|
get { return (string) this[ValueKey]; }
|
|
set { this[ValueKey] = value; }
|
|
}
|
|
}
|
|
} |