Skip to content

Commit

Permalink
PR review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
RikuVirtanen committed Sep 21, 2023
1 parent a2977c2 commit 70cb4a4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Frends.Files.Copy/Frends.Files.Copy/Copy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ public class Files
/// Copy files.
/// [Documentation](https://tasks.frends.com/tasks/frends-tasks/Frends.Files.Copy)
/// </summary>
/// <returns>List [ Object { string SourcePath, string Path } ]</returns>
/// <param name="input">Input parameters for the Task.</param>
/// <param name="options">Additional options for the Task.</param>
/// <param name="cancellationToken">CancellationToken given by Frends.</param>
/// <returns>List [ Object { string SourcePath, string TargetPath } ]</returns>
public static async Task<Result> Copy([PropertyTab] Input input, [PropertyTab] Options options, CancellationToken cancellationToken)
{
var result = await ExecuteActionAsync(() => ExecuteCopyAsync(input, options, cancellationToken),
Expand Down

0 comments on commit 70cb4a4

Please sign in to comment.