mirror of
https://github.com/actions/runner.git
synced 2025-12-14 04:53:34 +00:00
GitHub Actions Runner
This commit is contained in:
33
src/Sdk/BuildWebApi/Api/Contracts/ServerTarget.cs
Normal file
33
src/Sdk/BuildWebApi/Api/Contracts/ServerTarget.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System.Runtime.Serialization;
|
||||
using GitHub.Services.WebApi;
|
||||
|
||||
namespace GitHub.Build.WebApi
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a phase target that runs on the server.
|
||||
/// </summary>
|
||||
[DataContract]
|
||||
public class ServerTarget : PhaseTarget
|
||||
{
|
||||
public ServerTarget()
|
||||
: base(PhaseTargetType.Server)
|
||||
{
|
||||
}
|
||||
|
||||
internal ServerTarget(
|
||||
ISecuredObject securedObject)
|
||||
: base(PhaseTargetType.Server, securedObject)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The execution options.
|
||||
/// </summary>
|
||||
[DataMember]
|
||||
public ServerTargetExecutionOptions ExecutionOptions
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user