14 lines
302 B
C#
14 lines
302 B
C#
using System;
|
|
|
|
namespace FSI.Lib.WinSettings
|
|
{
|
|
/// <summary>
|
|
/// This attribute specifies that this property should be encrypted
|
|
/// when it is saved.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
public class EncryptedSettingAttribute : Attribute
|
|
{
|
|
}
|
|
}
|