mirror of
https://github.com/actions/runner.git
synced 2025-12-26 11:28:00 +08: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();
|
|
}
|