mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-04 15:54:33 +00: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; }
|
|
}
|
|
} |