using Newtonsoft.Json;
namespace Piwigo.Client.Contract;
internal record CommentAdded
{
[JsonProperty("comment")]
public Comment Comment { get; init; } = null!;
}