mirror of
https://github.com/actions/runner.git
synced 2025-12-11 21:06:55 +00:00
39 lines
859 B
C#
39 lines
859 B
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace GitHub.DistributedTask.Pipelines
|
|
{
|
|
[DataContract]
|
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
|
public sealed class AgentPoolReference : ResourceReference
|
|
{
|
|
public AgentPoolReference()
|
|
{
|
|
}
|
|
|
|
private AgentPoolReference(AgentPoolReference referenceToCopy)
|
|
: base(referenceToCopy)
|
|
{
|
|
this.Id = referenceToCopy.Id;
|
|
}
|
|
|
|
[DataMember(EmitDefaultValue = false)]
|
|
public Int32 Id
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public AgentPoolReference Clone()
|
|
{
|
|
return new AgentPoolReference(this);
|
|
}
|
|
|
|
public override String ToString()
|
|
{
|
|
return base.ToString() ?? this.Id.ToString();
|
|
}
|
|
}
|
|
}
|