pulumi/tests/testdata/codegen/simple-plain-schema-with-ro.../dotnet/Outputs/Foo.cs

46 lines
885 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 Foo
{
public readonly bool A;
public readonly bool? B;
public readonly int C;
public readonly int? D;
public readonly string E;
public readonly string? F;
[OutputConstructor]
private Foo(
bool a,
bool? b,
int c,
int? d,
string e,
string? f)
{
A = a;
B = b;
C = c;
D = d;
E = e;
F = f;
}
}
}