mirror of https://github.com/pulumi/pulumi.git
21 lines
496 B
C#
21 lines
496 B
C#
// Copyright 2016-2021, Pulumi Corporation
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace Pulumi.Automation
|
|
{
|
|
/// <summary>
|
|
/// A template used to seed new stacks created from this project.
|
|
/// </summary>
|
|
public class ProjectTemplate
|
|
{
|
|
public string? Description { get; set; }
|
|
|
|
public string? QuickStart { get; set; }
|
|
|
|
public IDictionary<string, ProjectTemplateConfigValue>? Config { get; set; }
|
|
|
|
public bool? Important { get; set; }
|
|
}
|
|
}
|