15 lines
290 B
C#
15 lines
290 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Piwigo.Client.Contract;
|
|
|
|
public record ImageDerivative
|
|
{
|
|
[JsonProperty("url")]
|
|
public string? Url { get; init; }
|
|
|
|
[JsonProperty("width")]
|
|
public int? Width { get; init; }
|
|
|
|
[JsonProperty("height")]
|
|
public int? Height { get; init; }
|
|
} |