14 lines
312 B
C#
14 lines
312 B
C#
using System;
|
|
|
|
namespace FSI.Lib.WinSettings
|
|
{
|
|
/// <summary>
|
|
/// Attribute specifies that this property does not represent a setting and
|
|
/// should not be saved.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
public class ExcludedSettingAttribute : Attribute
|
|
{
|
|
}
|
|
}
|