| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System; | |
| namespace PSTests.Internal | |
| { | |
| [] | |
| public class PriorityAttribute : Attribute | |
| { | |
| public PriorityAttribute(int priority) | |
| { | |
| Priority = priority; | |
| } | |
| public int Priority { get; } | |
| } | |
| } | |