mirror of
https://github.com/actions/runner.git
synced 2025-12-14 22:24:11 +00:00
10 lines
150 B
C#
10 lines
150 B
C#
using System;
|
|
|
|
namespace GitHub.Runner.Common
|
|
{
|
|
public interface IExtension : IRunnerService
|
|
{
|
|
Type ExtensionType { get; }
|
|
}
|
|
}
|