mirror of
https://github.com/actions/runner.git
synced 2025-12-13 10:05:23 +00:00
22 lines
469 B
C#
22 lines
469 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|