piwigodotnet/PiwigoDotnet/Piwigo.Client/Contract/CommentPost.cs

12 lines
223 B
C#
Raw Normal View History

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