mirror of
https://github.com/actions/runner.git
synced 2025-12-12 15:13:30 +00:00
11 lines
182 B
C#
11 lines
182 B
C#
using System;
|
|
|
|
namespace GitHub.DistributedTask.Expressions
|
|
{
|
|
public interface INamedValueInfo
|
|
{
|
|
String Name { get; }
|
|
NamedValueNode CreateNode();
|
|
}
|
|
}
|