15 lines
387 B
C#
15 lines
387 B
C#
|
using Newtonsoft.Json;
|
||
|
|
||
|
namespace Piwigo.Client.Contract;
|
||
|
|
||
|
public class 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; }
|
||
|
}
|