PowerShell/test/xUnit/Asserts/PriorityAttribute.cs
xtqqczze 859890374a
Use read-only auto-implemented properties (#13507)
* Autofix RCS1170: Use read-only auto-implemented property
2020-09-02 08:11:16 +05:00

15 lines
329 B
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
public class TestPriorityAttribute : Attribute
{
public TestPriorityAttribute(int priority)
{
Priority = priority;
}
public int Priority { get; }
}