pulumi/tests/testdata/codegen/simple-methods-schema/dotnet/Nested/Inputs/Baz.cs

27 lines
620 B
C#

// *** WARNING: this file was generated by test. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Threading.Tasks;
using Pulumi.Serialization;
namespace Pulumi.Example.Nested.Inputs
{
public sealed class Baz : global::Pulumi.InvokeArgs
{
[Input("hello")]
public string? Hello { get; set; }
[Input("world")]
public string? World { get; set; }
public Baz()
{
}
public static new Baz Empty => new Baz();
}
}