mirror of
https://github.com/actions/runner.git
synced 2025-12-12 15:13:30 +00:00
25 lines
381 B
C#
25 lines
381 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace GitHub.Build.WebApi
|
|
{
|
|
public interface IVariableMultiplierExecutionOptions
|
|
{
|
|
Int32 MaxConcurrency
|
|
{
|
|
get;
|
|
}
|
|
|
|
Boolean ContinueOnError
|
|
{
|
|
get;
|
|
}
|
|
|
|
List<String> Multipliers
|
|
{
|
|
get;
|
|
}
|
|
}
|
|
}
|