diff --git a/src/Core/Enums/DeviceType.cs b/src/Core/Enums/DeviceType.cs index 7c4b7065a..418329140 100644 --- a/src/Core/Enums/DeviceType.cs +++ b/src/Core/Enums/DeviceType.cs @@ -27,24 +27,4 @@ namespace Bit.Core.Enums VivaldiExtension = 19, SafariExtension = 20 } - - public static class DeviceTypeExtensions - { - public static List GetMobileTypes() => new List - { - DeviceType.Android, - DeviceType.AndroidAmazon, - DeviceType.iOS - }; - - public static List GetDesktopTypes() => new List - { - DeviceType.WindowsDesktop, - DeviceType.MacOsDesktop, - DeviceType.LinuxDesktop, - DeviceType.UWP, - }; - - public static List GetDesktopAndMobileTypes() => GetMobileTypes().Concat(GetDesktopTypes()).ToList(); - } }