pulumi/sdk/dotnet/Pulumi/Deployment/InlineDeploymentResult.cs
Sean Fausett 12217bd0dc
Fix async await warnings (#7537)
* Revert remove redundant async await
* Fix resharper code issues
* Update changelog
2021-07-21 18:44:10 -04:00

14 lines
280 B
C#

// Copyright 2016-2020, Pulumi Corporation
using System.Runtime.ExceptionServices;
namespace Pulumi
{
internal class InlineDeploymentResult
{
public int ExitCode { get; set; }
public ExceptionDispatchInfo? ExceptionDispatchInfo { get; set; }
}
}