jellypod/Jellyfin.Plugin.Jellypod/Api/Models/DownloadEpisodesRequest.cs
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

13 lines
301 B
C#

namespace Jellyfin.Plugin.Jellypod.Api.Models;
/// <summary>
/// Request to download episodes from a podcast.
/// </summary>
public class DownloadEpisodesRequest
{
/// <summary>
/// Gets or sets the number of episodes to download.
/// </summary>
public int Count { get; set; } = 5;
}