/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Data/Contexts/Shelf/IShelfContext.cs
21 строка
524 B
d2dyno
Code Quality: Continued working on Shelf Pane (#17308)
04 май 2026, 07:57
Не верифицирован
04 май 2026, 07:57
2968da7
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. namespace Files.App.Data.Contexts { /// <summary> /// Represents context for <see cref="UserControls.ShelfPane"/>. /// </summary> public interface IShelfContext : INotifyPropertyChanged { /// <summary> /// Gets the currently selected items in the shelf. /// </summary> IReadOnlyList<ShelfItem> SelectedItems { get; } /// <summary> /// Gets whether any item is selected in the shelf. /// </summary> bool HasSelection { get; } } }