2023-06-02 21:47:59 +02:00
|
|
|
namespace Sdk.RSWebApi.Contracts
|
2023-05-01 08:33:03 -04:00
|
|
|
{
|
|
|
|
|
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";
|
|
|
|
|
}
|
|
|
|
|
}
|