* sync plex platform and platform version * fix mixed-platform path replacements
12 lines
285 B
C#
12 lines
285 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Runtime
|
|
{
|
|
public interface IRuntimeInfo
|
|
{
|
|
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
|
bool IsOSPlatform(OSPlatform osPlatform);
|
|
}
|
|
}
|