using Newtonsoft.Json; namespace Piwigo.Client.Contract; public record CommentPost { [JsonProperty("author")] public string? Author { get; init; } [JsonProperty("key")] public string? Key { get; init; } }