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