using System; using Jellyfin.Plugin.Simkl.API.Objects; namespace Jellyfin.Plugin.Simkl.API.Responses { /// /// sync history not found. /// public class SyncHistoryNotFound { /// /// Gets or sets movies. /// public SimklMovie[] Movies { get; set; } = Array.Empty(); /// /// Gets or sets shows. /// public SimklShow[] Shows { get; set; } = Array.Empty(); /// /// Gets or sets episodes. /// public SimklEpisode[] Episodes { get; set; } = Array.Empty(); } }