pulumi/tests/testdata/codegen/secrets/dotnet/Inputs/ConfigArgs.cs

24 lines
575 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.Mypkg.Inputs
{
public sealed class ConfigArgs : global::Pulumi.ResourceArgs
{
[Input("foo")]
public Input<string>? Foo { get; set; }
public ConfigArgs()
{
}
public static new ConfigArgs Empty => new ConfigArgs();
}
}