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; }
///
/// Gets or sets not found.
///
[JsonPropertyName("not_found")]
public SyncHistoryNotFound not_found { get; set; }
}
}