github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/simple-plain-schema/dotnet/Outputs/Foo.cs (about) 1 // *** WARNING: this file was generated by test. *** 2 // *** Do not edit by hand unless you're certain you know what you are doing! *** 3 4 using System; 5 using System.Collections.Generic; 6 using System.Collections.Immutable; 7 using System.Threading.Tasks; 8 using Pulumi.Serialization; 9 10 namespace Pulumi.Example.Outputs 11 { 12 13 [OutputType] 14 public sealed class Foo 15 { 16 public readonly bool A; 17 public readonly bool? B; 18 public readonly int C; 19 public readonly int? D; 20 public readonly string E; 21 public readonly string? F; 22 23 [OutputConstructor] 24 private Foo( 25 bool a, 26 27 bool? b, 28 29 int c, 30 31 int? d, 32 33 string e, 34 35 string? f) 36 { 37 A = a; 38 B = b; 39 C = c; 40 D = d; 41 E = e; 42 F = f; 43 } 44 } 45 }