mirror of https://github.com/pulumi/pulumi.git
25 lines
538 B
C#
25 lines
538 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.Std.Outputs
|
|
{
|
|
|
|
[OutputType]
|
|
public sealed class CustomResult
|
|
{
|
|
public readonly string? Value;
|
|
|
|
[OutputConstructor]
|
|
private CustomResult(string? value)
|
|
{
|
|
Value = value;
|
|
}
|
|
}
|
|
}
|