/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App.Storage/Windows/Managers/JumpListManager.cs
33 строки
652 B
yair100
Code Quality: Updated headers
01 июл 2026, 06:18
01 июл 2026, 06:18
c27305a
Код
Авторство
О чём код?
// Copyright (c) Files Community // SPDX-License-Identifier: MPL-2.0 namespace Files.App.Storage { public unsafe class JumpListManager : IDisposable { public string AppId { get; } public JumpListManager(string appId) { if (string.IsNullOrEmpty(appId)) throw new ArgumentException("App ID cannot be null or empty.", nameof(appId)); AppId = appId; //_jumpList = new ConcurrentDictionary<string, IObjectArray>(); } public IEnumerable<WindowsStorable> GetAutomaticDestinations() { return []; } public IEnumerable<WindowsStorable> GetCustomDestinations() { return []; } public void Dispose() { } } }