Files
runner/src/Runner.Worker/IEnvironmentContextData.cs
2022-09-15 15:55:45 +02:00

7 lines
160 B
C#

using System.Collections.Generic;
public interface IEnvironmentContextData
{
IEnumerable<KeyValuePair<string, string>> GetRuntimeEnvironmentVariables();
}