Files
runner/src/Runner.Worker/IEnvironmentContextData.cs
JoannaaKL efffbaeabc Add utf8 with bom (#2641)
* Change default file encoding
2023-06-02 21:47:59 +02:00

7 lines
163 B
C#

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