mirror of
https://github.com/actions/runner.git
synced 2025-12-12 05:37:01 +00:00
20 lines
453 B
C#
20 lines
453 B
C#
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;
|
|
}
|
|
}
|