mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 00:42:51 +08:00
15 lines
257 B
C#
15 lines
257 B
C#
using System;
|
|
|
|
namespace Spectre.Console.Tests
|
|
{
|
|
public sealed class GitHubIssueAttribute : Attribute
|
|
{
|
|
public int IssueId { get; }
|
|
|
|
public GitHubIssueAttribute(int issueId)
|
|
{
|
|
IssueId = issueId;
|
|
}
|
|
}
|
|
}
|