naps2/NAPS2.Lib/Config/UserAttribute.cs
2022-08-20 17:50:38 -07:00

14 lines
367 B
C#

using System.Runtime.CompilerServices;
namespace NAPS2.Config;
/// <summary>
/// Annotates a config property as being specified only at the user level and not at the app level. This isn't currently
/// enforced.
/// </summary>
public class UserAttribute : ConfigPropAttribute
{
public UserAttribute([CallerLineNumber] int line = 0) : base(line)
{
}
}