mirror of
https://github.com/actions/runner.git
synced 2025-12-17 07:54:19 +00:00
GitHub Actions Runner
This commit is contained in:
21
src/Sdk/BuildWebApi/Api/Contracts/DockerProcessTarget.cs
Normal file
21
src/Sdk/BuildWebApi/Api/Contracts/DockerProcessTarget.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System.Runtime.Serialization;
|
||||
using GitHub.Services.WebApi;
|
||||
|
||||
namespace GitHub.Build.WebApi
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents the target for the docker build process.
|
||||
/// </summary>
|
||||
[DataContract]
|
||||
public class DockerProcessTarget: DesignerProcessTarget
|
||||
{
|
||||
public DockerProcessTarget()
|
||||
{
|
||||
}
|
||||
|
||||
public DockerProcessTarget(ISecuredObject securedObject)
|
||||
: base(securedObject)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user