${StandardHeader.C#}
using System;
using System.Configuration;
namespace ${StandardNamespace}
{
///
/// Configuration settings for ${ClassName}.
///
public class ${ClassName}Section : ConfigurationSection
{
///
/// Collection of tables (auctually views) to generate
/// reports from.
///
[ConfigurationProperty("customSection", IsDefaultCollection = true)]
public ${ClassName}Collection ${ClassName}
{
get { return (${ClassName}Collection) base["customSection"]; }
}
}
}