mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-26 22:46:53 -04:00
10 lines
137 B
C#
10 lines
137 B
C#
using System;
|
|
|
|
namespace NzbDrone.Common.Processes
|
|
{
|
|
public interface IRuntimeProvider
|
|
{
|
|
String GetVersion();
|
|
}
|
|
}
|