mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-02 19:00:47 +00:00
added Context property to support different system
This commit is contained in:
@@ -24,11 +24,16 @@ namespace Octokit
|
||||
/// </summary>
|
||||
public string Description { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// A string label to differentiate this status from the status of other systems.
|
||||
/// </summary>
|
||||
public string Context { get; set; }
|
||||
|
||||
internal string DebuggerDisplay
|
||||
{
|
||||
get
|
||||
{
|
||||
return String.Format(CultureInfo.InvariantCulture, "Description: {0}", Description);
|
||||
return String.Format(CultureInfo.InvariantCulture, "Description: {0}, Context: {1}", Description, Context);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user