/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.Shared/Utils/IWrapper.cs
17 строк
417 B
Yair
Code Quality: Added action for toggling shelf pane (#16690)
09 янв 2025, 06:35
Не верифицирован
09 янв 2025, 06:35
04c6fd7
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. namespace Files.Shared.Utils { /// <summary> /// Wraps and exposes <typeparamref name="T"/> implementation for access. /// </summary> /// <typeparam name="T">The wrapped type.</typeparam> public interface IWrapper<out T> { /// <summary> /// Gets the inner member wrapped by the implementation. /// </summary> T Inner { get; } } }