mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-20 21:54:58 -04:00
9 lines
200 B
C#
9 lines
200 B
C#
namespace NzbDrone.Common.EnvironmentInfo
|
|
{
|
|
public interface IOperatingSystemVersionInfo
|
|
{
|
|
string Version { get; }
|
|
string Name { get; }
|
|
string FullName { get; }
|
|
}
|
|
} |