mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
11 lines
245 B
C#
11 lines
245 B
C#
using System;
|
|
|
|
namespace Netch
|
|
{
|
|
public static class Flags
|
|
{
|
|
public static readonly bool IsWindows10Upper = Environment.OSVersion.Version.Major >= 10;
|
|
|
|
public static bool AlwaysShowNewVersionFound { get; set; }
|
|
}
|
|
} |