/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Utils/Storage/Helpers/IStorageItemWithPath.cs
18 строк
321 B
Yair
Code Quality: Updated license header
31 дек 2024, 05:03
31 дек 2024, 05:03
8436c6d
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. using Windows.Storage; namespace Files.App.Utils.Storage { public interface IStorageItemWithPath { public string Name { get; } public string Path { get; } public IStorageItem Item { get; } public FilesystemItemType ItemType { get; } } }