mirror of
https://github.com/actions/runner.git
synced 2025-12-12 05:37:01 +00:00
Update runner to handle Dotcom/runner-admin based registration flow (#2487)
This commit is contained in:
committed by
GitHub
parent
440c81b770
commit
bb7b1e8259
18
src/Sdk/DTWebApi/WebApi/Runner.cs
Normal file
18
src/Sdk/DTWebApi/WebApi/Runner.cs
Normal 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;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user