SettingAttribute
Use this attribute to mark properties on a settings class that are to be treated
as settings. ApplicationSettingsBase will ignore all properties not marked with
this or a derived attribute.
namespace System.Configuration
{
[AttributeUsage(AttributeTargets.Property)]
public class SettingAttribute : Attribute
{
}
}