mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
11 lines
204 B
C#
11 lines
204 B
C#
using System;
|
|
using GitHub.Actions.Expressions.Sdk;
|
|
|
|
namespace GitHub.Actions.Expressions
|
|
{
|
|
public interface INamedValueInfo
|
|
{
|
|
String Name { get; }
|
|
NamedValue CreateNode();
|
|
}
|
|
} |