/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Data/Contexts/SideBar/ISideBarContext.cs
31 строка
802 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.Data.Contexts { /// <summary> /// Represents context for <see cref="UserControls.Sidebar.SidebarView"/>. /// </summary> public interface ISidebarContext { /// <summary> /// Gets the last sidebar right clicked item /// </summary> INavigationControlItem? RightClickedItem { get; } /// <summary> /// Gets the value that indicates whether any item has been right clicked /// </summary> bool IsItemRightClicked { get; } /// <summary> /// Gets the value that indicates whether right clicked item is a pinned folder item /// </summary> bool IsPinnedFolderItem { get; } /// <summary> /// Gets the drive item to open if any /// </summary> DriveItem? OpenDriveItem { get; } } }