Stuff for tunesync

This commit is contained in:
Dan Clark
2024-11-16 19:46:25 +00:00
parent 0865e7da89
commit b5bf17821c
27 changed files with 562 additions and 58 deletions
+23
View File
@@ -0,0 +1,23 @@
using System.Runtime.Versioning;
namespace Toolkit.Windows;
[SupportedOSPlatform("windows8.0")]
public enum QualityOfService
{
Default,
[SupportedOSPlatform("windows10.0.16299.0")]
High,
[SupportedOSPlatform("windows10.0.16299.0")]
Medium,
[SupportedOSPlatform("windows10.0.16299.0")]
Low,
[SupportedOSPlatform("windows11.0.22621.0")]
Utility,
[SupportedOSPlatform("windows11.0")]
Eco,
[SupportedOSPlatform("windows10.0.19041.0")]
Media,
[SupportedOSPlatform("windows10.0.19041.0")]
Deadline
}