piwigodotnet/PiwigoDotnet/Piwigo.Client/IAlbumApi.cs
Philipp Häfelfinger 09a7a40dff starts using json strings from api examples to check mapping
adds CalculateOrphansAsync to AlbumApi
removes some not needed log lines
removes tests explicit login calls
2022-10-16 23:53:17 +02:00

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();
}