/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Utils/Storage/Collection/IGroupedCollectionHeader.cs
16 строк
500 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.Utils.Storage { /// <summary> /// Represents an interface that is used to allow using x:Bind for the group header template. /// <br/> /// This is needed because x:Bind does not work with generic types, however it does work with interfaces. /// that are implemented by generic types. /// </summary> public interface IGroupedCollectionHeader { public GroupedHeaderViewModel Model { get; set; } } }