mirror of
https://github.com/actions/runner.git
synced 2025-12-12 23:46:12 +00:00
19 lines
555 B
C#
19 lines
555 B
C#
using System;
|
|
using GitHub.Services.Common;
|
|
|
|
namespace GitHub.Build.WebApi
|
|
{
|
|
[GenerateAllConstants]
|
|
public static class Links
|
|
{
|
|
public const string Avatar = "avatar";
|
|
public const String Self = "self";
|
|
public const String Web = "web";
|
|
public const String Editor = "editor";
|
|
public const String Badge = "badge";
|
|
public const String Timeline = "timeline";
|
|
public const String Details = "details";
|
|
public const String SourceVersionDisplayUri = "sourceVersionDisplayUri";
|
|
}
|
|
}
|