pulumi/tests/testdata/codegen/replace-on-change/dotnet/Outputs/Toy.cs

37 lines
810 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
{
/// <summary>
/// This is a toy
/// </summary>
[OutputType]
public sealed class Toy
{
public readonly Outputs.Toy? Associated;
public readonly string? Color;
public readonly double? Wear;
[OutputConstructor]
private Toy(
Outputs.Toy? associated,
string? color,
double? wear)
{
Associated = associated;
Color = color;
Wear = wear;
}
}
}