File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
src/Files.App/ViewModels/Properties/Items Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,22 @@ namespace Files.App.ViewModels.Properties
5
5
{
6
6
internal interface IFileProperties
7
7
{
8
+ /// <summary>
9
+ /// Loads metadata stored in files.
10
+ /// </summary>
11
+ /// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
8
12
Task GetSystemFilePropertiesAsync ( ) ;
9
13
14
+ /// <summary>
15
+ /// Saves edited metadata to files.
16
+ /// </summary>
17
+ /// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
10
18
Task SyncPropertyChangesAsync ( ) ;
11
19
20
+ /// <summary>
21
+ /// Clears metadata stored in files.
22
+ /// </summary>
23
+ /// <returns>A <see cref="Task"/> that represents the asynchronous operation.</returns>
12
24
Task ClearPropertiesAsync ( ) ;
13
25
}
14
26
}
You can’t perform that action at this time.
0 commit comments