mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
19 lines
301 B
C#
19 lines
301 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace GitHub.DistributedTask.WebApi
|
|
{
|
|
public class Runner
|
|
{
|
|
/// <summary>
|
|
/// Name of the agent
|
|
/// </summary>
|
|
[JsonProperty("name")]
|
|
public string Name
|
|
{
|
|
get;
|
|
internal set;
|
|
}
|
|
|
|
}
|
|
}
|