2022-10-08 00:08:48 +02:00
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
2022-10-15 00:07:59 +02:00
|
|
|
namespace Piwigo.Client.Contract;
|
2022-10-08 00:08:48 +02:00
|
|
|
|
|
|
|
public class PiwigoCategoryList
|
|
|
|
{
|
|
|
|
[JsonProperty("Categories")]
|
|
|
|
public IList<PiwigoCategory> Categories { get; init; } = null!;
|
|
|
|
}
|