9 lines
173 B
C#
9 lines
173 B
C#
|
using Newtonsoft.Json;
|
||
|
|
||
|
namespace Piwigo.Client.Contract;
|
||
|
|
||
|
public class AlbumList
|
||
|
{
|
||
|
[JsonProperty("Categories")]
|
||
|
public IList<Album> Albums { get; init; } = null!;
|
||
|
}
|