mirror of
https://github.com/actions/runner.git
synced 2025-12-12 23:46:12 +00:00
8 lines
174 B
C#
8 lines
174 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
public interface IEnvironmentContextData
|
|
{
|
|
IEnumerable<KeyValuePair<string, string>> GetRuntimeEnvironmentVariables();
|
|
}
|