mirror of
https://github.com/actions/runner.git
synced 2025-12-12 23:46:12 +00:00
GitHub Actions Runner
This commit is contained in:
28
src/Sdk/BuildWebApi/Api/Contracts/AgentSpecification.cs
Normal file
28
src/Sdk/BuildWebApi/Api/Contracts/AgentSpecification.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
using GitHub.Services.WebApi;
|
||||
|
||||
namespace GitHub.Build.WebApi
|
||||
{
|
||||
/// <summary>
|
||||
/// Specification of the agent defined by the pool provider.
|
||||
/// </summary>
|
||||
[DataContract]
|
||||
public class AgentSpecification: BaseSecuredObject
|
||||
{
|
||||
public AgentSpecification()
|
||||
{
|
||||
}
|
||||
|
||||
public AgentSpecification(ISecuredObject securedObject)
|
||||
: base(securedObject)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Agent specification unique identifier.
|
||||
/// </summary>
|
||||
[DataMember(EmitDefaultValue = false)]
|
||||
public String Identifier { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user