pschelpdesk/Vendor/Prise/Core/IRuntimePlatformContext.cs
2024-11-04 20:45:34 +01:00

12 lines
378 B
C#

using System.Collections.Generic;
namespace Prise
{
public interface IRuntimePlatformContext
{
IEnumerable<string> GetPlatformExtensions();
IEnumerable<string> GetPluginDependencyNames(string nameWithoutFileExtension);
IEnumerable<string> GetPlatformDependencyNames(string nameWithoutFileExtension);
RuntimeInfo GetRuntimeInfo();
}
}