13 lines
299 B
C#
13 lines
299 B
C#
namespace Jellyfin.Plugin.Jellypod.Api.Models;
|
|
|
|
/// <summary>
|
|
/// Request to import podcasts from an OPML URL.
|
|
/// </summary>
|
|
public class OpmlImportRequest
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the URL to fetch OPML from.
|
|
/// </summary>
|
|
public string Url { get; set; } = string.Empty;
|
|
}
|