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