github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/provider-config-schema/dotnet/Configstation/Outputs/Child.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  using Pulumi;
    10  
    11  namespace Configstation.Pulumi.Configstation.Outputs
    12  {
    13  
    14      [OutputType]
    15      public sealed class Child
    16      {
    17          public readonly int? Age;
    18          public readonly string? Name;
    19  
    20          [OutputConstructor]
    21          private Child(
    22              int? age,
    23  
    24              string? name)
    25          {
    26              Age = age;
    27              Name = name;
    28          }
    29      }
    30  }