fixes some namespaces

This commit is contained in:
Philipp Häfelfinger 2022-10-27 23:06:07 +02:00
parent 49ec268c3d
commit 737f3ff198
1 changed files with 2 additions and 4 deletions

View File

@ -1,5 +1,3 @@
using Piwigo.Client.Session;
namespace Piwigo.Client.Images;
public interface IImageApi
@ -107,7 +105,7 @@ public interface IImageApi
/// Deletes the given image from the server.
/// </summary>
/// <param name="imageId">the image id to delete</param>
/// <param name="apiToken">The API token that can be read from <see cref="SessionStatus" /></param>
/// <param name="apiToken">The API token that can be read from <see cref="Piwigo.Client.Session.SessionStatus" /></param>
/// <param name="cancellationToken">
/// <see cref="CancellationToken" />
/// </param>
@ -117,7 +115,7 @@ public interface IImageApi
/// <summary>
/// Deletes a block of orphaned images from the server and returns the number of remaining orphans.
/// </summary>
/// <param name="apiToken">The API token that can be read from <see cref="SessionStatus" /></param>
/// <param name="apiToken">The API token that can be read from <see cref="Piwigo.Client.Session.SessionStatus" /></param>
/// <param name="blockSize">Number of orphaned images to delete in this call</param>
/// <param name="cancellationToken">
/// <see cref="CancellationToken" />