namespace Jellyfin.Plugin.Simkl.API.Responses { /// /// Sync history response count. /// public class SyncHistoryResponseCount { /// /// Gets or sets movies. /// public int Movies { get; set; } /// /// Gets or sets shows. /// public int Shows { get; set; } /// /// Gets or sets episodes. /// public int Episodes { get; set; } } }