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

9 lines
170 B
C#
Raw Normal View History

2022-10-22 23:42:12 +02:00
using Newtonsoft.Json;
namespace Piwigo.Client.Contract;
public record CommentAdded
{
[JsonProperty("comment")]
public Comment Comment { get; init; } = null!;
}