namespace Jellyfin.Plugin.Jellypod.Api.Models; /// /// Request to import podcasts from an OPML URL. /// public class OpmlImportRequest { /// /// Gets or sets the URL to fetch OPML from. /// public string Url { get; set; } = string.Empty; }