15 lines
388 B
C#
15 lines
388 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Piwigo.Client.Contract;
|
|
|
|
public record AlbumOrphans
|
|
{
|
|
[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; }
|
|
} |