12 lines
224 B
C#
12 lines
224 B
C#
|
using Newtonsoft.Json;
|
||
|
|
||
|
namespace Piwigo.Client.Contract;
|
||
|
|
||
|
public class ImageUploaded
|
||
|
{
|
||
|
[JsonProperty("image_id")]
|
||
|
public int? ImageId { get; init; }
|
||
|
|
||
|
[JsonProperty("url")]
|
||
|
public string? Url { get; init; }
|
||
|
}
|