pulumi/tests/testdata/codegen/dash-named-schema/dotnet/Outputs/TopLevel.cs

25 lines
529 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.FooBar.Outputs
{
[OutputType]
public sealed class TopLevel
{
public readonly string? Buzz;
[OutputConstructor]
private TopLevel(string? buzz)
{
Buzz = buzz;
}
}
}