/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/ViewModels/Properties/Items/IFileProperties.cs
26 строк
750 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. namespace Files.App.ViewModels.Properties { internal interface IFileProperties { /// <summary> /// Loads metadata stored in files. /// </summary> /// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns> Task GetSystemFilePropertiesAsync(); /// <summary> /// Saves edited metadata to files. /// </summary> /// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns> Task SyncPropertyChangesAsync(); /// <summary> /// Clears metadata stored in files. /// </summary> /// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns> Task ClearPropertiesAsync(); } }