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

13 lines
351 B
C#

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