2022-10-16 22:58:38 +02:00
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
namespace Piwigo.Client.Contract;
|
|
|
|
|
2022-10-22 23:20:26 +02:00
|
|
|
internal record AlbumAdded
|
2022-10-16 22:58:38 +02:00
|
|
|
{
|
|
|
|
[JsonProperty("info")]
|
|
|
|
public string? Info { get; init; }
|
|
|
|
|
|
|
|
[JsonProperty("id")]
|
|
|
|
public int? Id { get; init; }
|
|
|
|
}
|