piwigodotnet/PiwigoDotnet/Piwigo.Client/IPiwigoClient.cs

12 lines
274 B
C#

namespace Piwigo.Client;
public interface IPiwigoClient
{
IGroupApi Group { get; }
IImageApi Image { get; }
IPermissionApi Permission { get; }
ITagApi Tag { get; }
IUserApi User { get; }
ISessionApi Session { get; }
IAlbumApi Album { get; }
}