mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
16 lines
532 B
C#
16 lines
532 B
C#
namespace Sdk.RSWebApi.Contracts
|
|
{
|
|
public static class RunIssueKeys
|
|
{
|
|
public const string Message = "message";
|
|
public const string File = "file";
|
|
public const string Line = "line";
|
|
public const string Col = "col";
|
|
public const string EndLine = "endLine";
|
|
public const string EndColumn = "endColumn";
|
|
public const string LogLineNumber = "logFileLineNumber";
|
|
public const string StepNumber = "stepNumber";
|
|
public const string Title = "title";
|
|
}
|
|
}
|