Files
octokit.net/Octokit/Models/Request/NewDependencySnapshotManifestFile.cs
awedist 7d54cb0d85 feat: Implement dependency review and dependency submission APIs (#2932)
Implement dependency review and dependency submission

Co-authored-by: André Pereira <Andre.LuisPereira@Student.HTW-Berlin.de>
2024-06-14 17:03:11 -05:00

23 lines
594 B
C#

using System.Diagnostics;
using System.Globalization;
namespace Octokit
{
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class NewDependencySnapshotManifestFile
{
/// <summary>
/// Optional. The path of the manifest file relative to the root of the Git repository.
/// </summary>
public string SourceLocation { get; set; }
internal string DebuggerDisplay
{
get
{
return string.Format(CultureInfo.InvariantCulture, "Source Location: {0}", SourceLocation);
}
}
}
}