mirror of
https://github.com/actions/runner.git
synced 2026-01-14 07:18:22 +08:00
14 lines
305 B
C#
14 lines
305 B
C#
using System;
|
|
using System.ComponentModel;
|
|
using GitHub.DistributedTask.Expressions2.Sdk;
|
|
|
|
namespace GitHub.DistributedTask.Expressions2
|
|
{
|
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
|
public interface INamedValueInfo
|
|
{
|
|
String Name { get; }
|
|
NamedValue CreateNode();
|
|
}
|
|
}
|