mirror of
https://github.com/actions/runner.git
synced 2025-12-12 14:17:46 +00:00
GitHub Actions Runner
This commit is contained in:
19
src/Sdk/DTExpressions/Expressions/ConversionResult.cs
Normal file
19
src/Sdk/DTExpressions/Expressions/ConversionResult.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace GitHub.DistributedTask.Expressions
|
||||
{
|
||||
[EditorBrowsable(EditorBrowsableState.Never)]
|
||||
public struct ConversionResult
|
||||
{
|
||||
/// <summary>
|
||||
/// Result object after the conversion
|
||||
/// </summary>
|
||||
public Object Result;
|
||||
|
||||
/// <summary>
|
||||
/// Memory overhead for the result object
|
||||
/// </summary>
|
||||
public ResultMemory ResultMemory;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user