github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/simple-methods-schema/dotnet/Nested/Inputs/Baz.cs (about) 1 // *** WARNING: this file was generated by test. *** 2 // *** Do not edit by hand unless you're certain you know what you are doing! *** 3 4 using System; 5 using System.Collections.Generic; 6 using System.Collections.Immutable; 7 using System.Threading.Tasks; 8 using Pulumi.Serialization; 9 10 namespace Pulumi.Example.Nested.Inputs 11 { 12 13 public sealed class Baz : global::Pulumi.InvokeArgs 14 { 15 [Input("hello")] 16 public string? Hello { get; set; } 17 18 [Input("world")] 19 public string? World { get; set; } 20 21 public Baz() 22 { 23 } 24 public static new Baz Empty => new Baz(); 25 } 26 }