pulumi/tests/testdata/codegen/simple-resource-schema/dotnet/Outputs/SomeOtherObject.cs

25 lines
540 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.Outputs
{
[OutputType]
public sealed class SomeOtherObject
{
public readonly string? Baz;
[OutputConstructor]
private SomeOtherObject(string? baz)
{
Baz = baz;
}
}
}