Update runner to handle Dotcom/runner-admin based registration flow (#2487)

This commit is contained in:
Tatyana Kostromskaya
2023-03-21 16:05:32 +01:00
committed by GitHub
parent 440c81b770
commit bb7b1e8259
8 changed files with 455 additions and 19 deletions

View File

@@ -0,0 +1,18 @@
using Newtonsoft.Json;
namespace GitHub.DistributedTask.WebApi
{
public class Runner
{
/// <summary>
/// Name of the agent
/// </summary>
[JsonProperty("name")]
public string Name
{
get;
internal set;
}
}
}