using System.Text.Json.Serialization;
#pragma warning disable SA1300
namespace Jellyfin.Plugin.Simkl.API.Responses
{
///
/// Sync history response.
///
public class SyncHistoryResponse
{
///
/// Gets or sets added.
///
public SyncHistoryResponseCount Added { get; set; } = new SyncHistoryResponseCount();
///
/// Gets or sets not found.
///
[JsonPropertyName("not_found")]
public SyncHistoryNotFound? NotFound { get; set; }
}
}