mirror of
https://github.com/actions/runner.git
synced 2025-12-17 15:59:37 +00:00
24 lines
482 B
C#
24 lines
482 B
C#
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace GitHub.DistributedTask.Expressions2
|
|
{
|
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
|
public sealed class EvaluationOptions
|
|
{
|
|
public EvaluationOptions()
|
|
{
|
|
}
|
|
|
|
public EvaluationOptions(EvaluationOptions copy)
|
|
{
|
|
if (copy != null)
|
|
{
|
|
MaxMemory = copy.MaxMemory;
|
|
}
|
|
}
|
|
|
|
public Int32 MaxMemory { get; set; }
|
|
}
|
|
}
|