Duncan Tourolle 4679b77d1a
Some checks failed
🏗️ Build Plugin / call (push) Failing after 0s
📝 Create/Update Release Draft & Release Bump PR / call (push) Failing after 0s
🔬 Run CodeQL / call (push) Failing after 0s
🧪 Test Plugin / call (push) Failing after 0s
First POC with podcasts library
2025-12-13 23:57:58 +01:00

21 lines
475 B
C#

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