mirror of
https://github.com/actions/runner.git
synced 2025-12-16 15:06:49 +00:00
GitHub Actions Runner
This commit is contained in:
27
src/Sdk/BuildWebApi/Api/Contracts/DesignerProcessTarget.cs
Normal file
27
src/Sdk/BuildWebApi/Api/Contracts/DesignerProcessTarget.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user