mirror of https://github.com/pulumi/pulumi.git
20 lines
460 B
C#
20 lines
460 B
C#
// Copyright 2016-2021, Pulumi Corporation
|
|
|
|
namespace Pulumi.Automation
|
|
{
|
|
/// <summary>
|
|
/// A description of the Project's program runtime and associated metadata.
|
|
/// </summary>
|
|
public class ProjectRuntime
|
|
{
|
|
public ProjectRuntimeName Name { get; set; }
|
|
|
|
public ProjectRuntimeOptions? Options { get; set; }
|
|
|
|
public ProjectRuntime(ProjectRuntimeName name)
|
|
{
|
|
this.Name = name;
|
|
}
|
|
}
|
|
}
|