15 lines
283 B
C#
15 lines
283 B
C#
|
using Newtonsoft.Json;
|
||
|
|
||
|
namespace Piwigo.Client.Contract;
|
||
|
|
||
|
public class ImageAlbum
|
||
|
{
|
||
|
[JsonProperty("id")]
|
||
|
public int Id { get; init; }
|
||
|
|
||
|
[JsonProperty("url")]
|
||
|
public string? Url { get; init; }
|
||
|
|
||
|
[JsonProperty("page_url")]
|
||
|
public string? PageUrl { get; init; }
|
||
|
}
|