2022-10-22 22:38:25 +02:00
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
namespace Piwigo.Client.Contract;
|
|
|
|
|
2022-10-22 23:20:26 +02:00
|
|
|
public record ImageUploaded
|
2022-10-22 22:38:25 +02:00
|
|
|
{
|
|
|
|
[JsonProperty("image_id")]
|
|
|
|
public int? ImageId { get; init; }
|
|
|
|
|
|
|
|
[JsonProperty("url")]
|
|
|
|
public string? Url { get; init; }
|
|
|
|
}
|