using System.Text.Json.Serialization; 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 NotFound { get; set; } } }