using System.ComponentModel.DataAnnotations;
namespace Jellyfin.Plugin.Jellypod.Api.Models;
///
/// Request to add a new podcast.
///
public class AddPodcastRequest
{
///
/// Gets or sets the RSS feed URL.
///
[Required]
public string FeedUrl { get; set; } = string.Empty;
///
/// Gets or sets whether to enable auto-download.
///
public bool? AutoDownload { get; set; }
}