mirror of
https://github.com/actions/runner.git
synced 2025-12-11 04:46:58 +00:00
28 lines
680 B
C#
28 lines
680 B
C#
using System.Runtime.Serialization;
|
|
using GitHub.Services.WebApi;
|
|
|
|
namespace GitHub.Build.WebApi
|
|
{
|
|
/// <summary>
|
|
/// Represents the target for the build process.
|
|
/// </summary>
|
|
[DataContract]
|
|
public class DesignerProcessTarget : BaseSecuredObject
|
|
{
|
|
public DesignerProcessTarget()
|
|
{
|
|
}
|
|
|
|
public DesignerProcessTarget(ISecuredObject securedObject)
|
|
: base(securedObject)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Agent specification for the build process.
|
|
/// </summary>
|
|
[DataMember(EmitDefaultValue = false)]
|
|
public AgentSpecification AgentSpecification { get; set; }
|
|
}
|
|
}
|