2022-10-16 23:53:17 +02:00
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
namespace Piwigo.Client.Contract;
|
|
|
|
|
2022-10-22 23:20:26 +02:00
|
|
|
public record AlbumOrphans
|
2022-10-16 23:53:17 +02:00
|
|
|
{
|
|
|
|
[JsonProperty("nb_images_associated_outside")]
|
|
|
|
public int? AssociatedOutsideCount { get; init; }
|
|
|
|
|
|
|
|
[JsonProperty("nb_images_becoming_orphan")]
|
|
|
|
public int? BecomingOrphanCount { get; init; }
|
|
|
|
|
|
|
|
[JsonProperty("nb_images_recursive")]
|
|
|
|
public int? RecursiveImageCount { get; init; }
|
|
|
|
}
|