mirror of https://github.com/pulumi/pulumi.git
28 lines
611 B
C#
28 lines
611 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>
|
|
/// A toy for a dog
|
|
/// </summary>
|
|
[OutputType]
|
|
public sealed class Chew
|
|
{
|
|
public readonly Pulumi.Example.Dog? Owner;
|
|
|
|
[OutputConstructor]
|
|
private Chew(Pulumi.Example.Dog? owner)
|
|
{
|
|
Owner = owner;
|
|
}
|
|
}
|
|
}
|