mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
34 lines
919 B
C#
34 lines
919 B
C#
|
|
using System.Diagnostics;
|
|
|
|
namespace Octokit
|
|
{
|
|
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
|
public class RunnerApplication
|
|
{
|
|
public RunnerApplication() { }
|
|
|
|
public RunnerApplication(string os, string architecture, string downloadUrl, string fileName)
|
|
{
|
|
Os = os;
|
|
Architecture = architecture;
|
|
DownloadUrl = downloadUrl;
|
|
FileName = fileName;
|
|
}
|
|
|
|
public string Os { get; private set; }
|
|
public string Architecture { get; private set; }
|
|
public string DownloadUrl { get; private set; }
|
|
public string FileName { get; private set; }
|
|
|
|
internal string DebuggerDisplay
|
|
{
|
|
get
|
|
{
|
|
return string.Format("Os: {0}; Architecture: {1}; DownloadUrl: {2}; FileName: {3};",
|
|
Os, Architecture, DownloadUrl, FileName);
|
|
}
|
|
}
|
|
}
|
|
}
|