2022-10-21 21:20:21 +02:00
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
namespace Piwigo.Client.Contract;
|
|
|
|
|
2022-10-22 23:20:26 +02:00
|
|
|
public record ImageDerivative
|
2022-10-21 21:20:21 +02:00
|
|
|
{
|
|
|
|
[JsonProperty("url")]
|
|
|
|
public string? Url { get; init; }
|
|
|
|
|
|
|
|
[JsonProperty("width")]
|
|
|
|
public int? Width { get; init; }
|
|
|
|
|
|
|
|
[JsonProperty("height")]
|
|
|
|
public int? Height { get; init; }
|
|
|
|
}
|