mirror of
https://github.com/actions/runner.git
synced 2025-12-28 04:17:51 +08:00
12 lines
160 B
C#
12 lines
160 B
C#
namespace GitHub.DistributedTask.WebApi
|
|
{
|
|
using System;
|
|
|
|
[Flags]
|
|
public enum TaskGroupExpands
|
|
{
|
|
None = 0,
|
|
Tasks = 2,
|
|
}
|
|
}
|