mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-25 09:31:38 -04:00
13 lines
255 B
C#
13 lines
255 B
C#
namespace Cleanuparr.Api.Tests;
|
|
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public sealed class TestPriorityAttribute : Attribute
|
|
{
|
|
public int Priority { get; }
|
|
|
|
public TestPriorityAttribute(int priority)
|
|
{
|
|
Priority = priority;
|
|
}
|
|
}
|