mirror of
https://github.com/actions/runner.git
synced 2025-12-13 19:03:44 +00:00
34 lines
737 B
C#
34 lines
737 B
C#
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;
|
|
}
|
|
}
|
|
}
|