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

27 lines
652 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 BazArgs : global::Pulumi.ResourceArgs
{
[Input("hello")]
public Input<string>? Hello { get; set; }
[Input("world")]
public Input<string>? World { get; set; }
public BazArgs()
{
}
public static new BazArgs Empty => new BazArgs();
}
}