2024-09-05 17:08:57 -04:00
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace GitHub.Actions.RunService.WebApi
|
|
|
|
|
{
|
|
|
|
|
[DataContract]
|
|
|
|
|
public class BrokerErrorKind
|
|
|
|
|
{
|
2024-11-04 20:11:58 -06:00
|
|
|
public const string RunnerNotFound = "RunnerNotFound";
|
2024-09-05 17:08:57 -04:00
|
|
|
public const string RunnerVersionTooOld = "RunnerVersionTooOld";
|
|
|
|
|
}
|
|
|
|
|
}
|