mirror of
https://github.com/actions/runner.git
synced 2025-12-10 20:36:49 +00:00
29 lines
672 B
C#
29 lines
672 B
C#
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; }
|
|
}
|
|
}
|