17 lines
No EOL
557 B
C#
17 lines
No EOL
557 B
C#
using System.Configuration;
|
|
using WebsitePanel.WebDavPortal.WebConfigSections;
|
|
|
|
namespace WebsitePanel.WebDavPortal.Config.Entities
|
|
{
|
|
public abstract class AbstractConfigCollection
|
|
{
|
|
protected WebDavExplorerConfigurationSettingsSection ConfigSection;
|
|
|
|
protected AbstractConfigCollection()
|
|
{
|
|
ConfigSection =
|
|
(WebDavExplorerConfigurationSettingsSection)
|
|
ConfigurationManager.GetSection(WebDavExplorerConfigurationSettingsSection.SectionName);
|
|
}
|
|
}
|
|
} |