Files
octokit.net/Octokit/Models/Response/RepositoryContentChangeSet.cs
T
Kristian Hellang 21ca33817d Fixed failing tests
2015-01-06 00:27:16 +01:00

28 lines
818 B
C#

using System.Diagnostics;
namespace Octokit
{
/// <summary>
/// The response from the Repository Contents API. The API assumes a dynamic client type so we need
/// to model that.
/// </summary>
/// <remarks>https://developer.github.com/v3/repos/contents/</remarks>
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class RepositoryContentChangeSet
{
/// <summary>
/// The content of the response.
/// </summary>
public RepositoryContentInfo Content { get; protected set; }
/// <summary>
/// The commit information for the content change.
/// </summary>
public Commit Commit { get; protected set; }
internal string DebuggerDisplay
{
get { return Content.DebuggerDisplay; }
}
}
}