Philipp Häfelfinger
09a7a40dff
adds CalculateOrphansAsync to AlbumApi removes some not needed log lines removes tests explicit login calls
13 lines
405 B
C#
13 lines
405 B
C#
using Piwigo.Client.Contract;
|
|
|
|
namespace Piwigo.Client;
|
|
|
|
public interface IAlbumApi
|
|
{
|
|
Task<AlbumOrphans> CalculateOrphansAsync(int albumId);
|
|
|
|
Task<int> AddAsync(string name, int? parentId = null, string? comment = null, bool? visible = null, CategoryStatus? status = null, bool? commentable = null,
|
|
CategoryPosition? position = null);
|
|
|
|
Task<IReadOnlyCollection<Album>> GetAllAsync();
|
|
} |