mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-27 16:42:03 +00:00
28 lines
689 B
C#
28 lines
689 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Globalization;
|
|
|
|
namespace Octokit
|
|
{
|
|
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
|
public class CheckRunRequestedAction
|
|
{
|
|
public CheckRunRequestedAction()
|
|
{
|
|
}
|
|
|
|
public CheckRunRequestedAction(string identifier)
|
|
{
|
|
Identifier = identifier;
|
|
}
|
|
|
|
/// <summary>
|
|
/// The Identifier of the check run requested action.
|
|
/// </summary>
|
|
public string Identifier { get; protected set; }
|
|
|
|
internal string DebuggerDisplay => string.Format(CultureInfo.InvariantCulture, "Identifier: {0}", Identifier);
|
|
}
|
|
}
|