namespace Jellyfin.Plugin.Jellypod.Api.Models;
///
/// Details about a failed OPML feed import.
///
public class OpmlImportError
{
///
/// Gets or sets the feed URL that failed.
///
public string FeedUrl { get; set; } = string.Empty;
///
/// Gets or sets the feed title from OPML (if available).
///
public string? Title { get; set; }
///
/// Gets or sets the error message.
///
public string Error { get; set; } = string.Empty;
}