2022-10-22 20:36:20 +02:00
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
namespace Piwigo.Client.Contract;
|
|
|
|
|
2022-10-22 23:20:26 +02:00
|
|
|
public record CheckUpload
|
2022-10-22 20:36:20 +02:00
|
|
|
{
|
|
|
|
[JsonProperty("message")]
|
|
|
|
public string? Message { get; init; }
|
|
|
|
|
|
|
|
[JsonProperty("ready_for_upload")]
|
|
|
|
public bool IsReady { get; init; }
|
|
|
|
}
|