mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-15 00:12:50 +08:00
12 lines
261 B
C#
12 lines
261 B
C#
namespace Spectre.Console.Tests;
|
|
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
|
|
public sealed class GitHubIssueAttribute : Attribute
|
|
{
|
|
public string Url { get; }
|
|
|
|
public GitHubIssueAttribute(string url)
|
|
{
|
|
Url = url;
|
|
}
|
|
} |