GitHub Actions Runner

This commit is contained in:
Tingluo Huang
2019-10-10 00:52:42 -04:00
commit c8afc84840
1255 changed files with 198670 additions and 0 deletions

View 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;
}
}
}