Files
octokit.net/Octokit/Models/Request/NewCommitStatus.cs
T
2013-10-29 23:15:43 -07:00

25 lines
772 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
namespace Octokit
{
public class NewCommitStatus
{
/// <summary>
/// The state of the commit.
/// </summary>
public CommitState State { get; set; }
/// <summary>
/// URL associated with this status. GitHub.com displays this URL as a link to allow users to easily see the
/// source of the Status. For example, if your Continuous Integration system is posting build status,
/// you would want to provide the deep link for the build output for this specific sha.
/// </summary>
public Uri TargetUrl { get; set; }
/// <summary>
/// Short description of the status.
/// </summary>
public string Description { get; set; }
}
}