github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/replace-on-change/dotnet/Outputs/Toy.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 /// <summary> 14 /// This is a toy 15 /// </summary> 16 [OutputType] 17 public sealed class Toy 18 { 19 public readonly Outputs.Toy? Associated; 20 public readonly string? Color; 21 public readonly double? Wear; 22 23 [OutputConstructor] 24 private Toy( 25 Outputs.Toy? associated, 26 27 string? color, 28 29 double? wear) 30 { 31 Associated = associated; 32 Color = color; 33 Wear = wear; 34 } 35 } 36 }