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