namespace Jellyfin.Plugin.Jellypod.Api.Models;
///
/// Request to update a podcast.
///
public class UpdatePodcastRequest
{
///
/// Gets or sets whether to enable auto-download.
///
public bool? AutoDownload { get; set; }
///
/// Gets or sets the maximum episodes to keep.
///
public int? MaxEpisodesToKeep { get; set; }
}