using System; namespace FSI.Lib.WinSettings { /// /// Attribute specifies that this property does not represent a setting and /// should not be saved. /// [AttributeUsage(AttributeTargets.Property)] public class ExcludedSettingAttribute : Attribute { } }