github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/simple-plain-schema-with-root-package/dotnet/Inputs/FooArgs.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.Inputs
    11  {
    12  
    13      public sealed class FooArgs : global::Pulumi.ResourceArgs
    14      {
    15          [Input("a", required: true)]
    16          public bool A { get; set; }
    17  
    18          [Input("b")]
    19          public bool? B { get; set; }
    20  
    21          [Input("c", required: true)]
    22          public int C { get; set; }
    23  
    24          [Input("d")]
    25          public int? D { get; set; }
    26  
    27          [Input("e", required: true)]
    28          public string E { get; set; } = null!;
    29  
    30          [Input("f")]
    31          public string? F { get; set; }
    32  
    33          public FooArgs()
    34          {
    35          }
    36          public static new FooArgs Empty => new FooArgs();
    37      }
    38  }