8 lines
161 B
C#
8 lines
161 B
C#
using Piwigo.Client.Contract;
|
|
|
|
namespace Piwigo.Client;
|
|
|
|
public interface ICategoryApi
|
|
{
|
|
Task<IReadOnlyCollection<PiwigoCategory>> GetAllCategoriesAsync();
|
|
} |