Onyxl's picture
Upload 2661 files
8c763fb verified
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
namespace PSTests.Internal
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
public class PriorityAttribute : Attribute
{
public PriorityAttribute(int priority)
{
Priority = priority;
}
public int Priority { get; }
}
}