mirror of
https://github.com/actions/runner.git
synced 2025-12-19 00:36:55 +00:00
GitHub Actions Runner
This commit is contained in:
21
src/Sdk/DTPipelines/Pipelines/EnvironmentDeploymentTarget.cs
Normal file
21
src/Sdk/DTPipelines/Pipelines/EnvironmentDeploymentTarget.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.Runtime.Serialization;
|
||||
using GitHub.DistributedTask.WebApi;
|
||||
|
||||
namespace GitHub.DistributedTask.Pipelines
|
||||
{
|
||||
[DataContract]
|
||||
[EditorBrowsable(EditorBrowsableState.Never)]
|
||||
public class EnvironmentDeploymentTarget
|
||||
{
|
||||
[DataMember]
|
||||
public Int32 EnvironmentId { get; set; }
|
||||
|
||||
[DataMember]
|
||||
public String EnvironmentName { get; set; }
|
||||
|
||||
[DataMember]
|
||||
public EnvironmentResourceReference Resource { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user