/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Data/Items/IExpandableSidebarFolder.cs
14 строк
441 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.Items { /// <summary> /// Sidebar items whose children load lazily on first expansion (DriveItem, LocationItem). Used by the sidebar VM to drive expandability setup without per-type switches. /// </summary> internal interface IExpandableSidebarFolder { bool IsExpandableFolder { get; set; } bool HasUnrealizedChildren { get; set; } } }