12 lines
215 B
C#
12 lines
215 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Piwigo.Client.Contract;
|
|
|
|
internal record AlbumAdded
|
|
{
|
|
[JsonProperty("info")]
|
|
public string? Info { get; init; }
|
|
|
|
[JsonProperty("id")]
|
|
public int? Id { get; init; }
|
|
} |