9 lines
170 B
C#
9 lines
170 B
C#
|
using Newtonsoft.Json;
|
||
|
|
||
|
namespace Piwigo.Client.Contract;
|
||
|
|
||
|
public record CommentAdded
|
||
|
{
|
||
|
[JsonProperty("comment")]
|
||
|
public Comment Comment { get; init; } = null!;
|
||
|
}
|