using System.ComponentModel.DataAnnotations; namespace Jellyfin.Plugin.Jellypod.Api.Models; /// /// Request to preview a feed. /// public class PreviewFeedRequest { /// /// Gets or sets the RSS feed URL. /// [Required] public string FeedUrl { get; set; } = string.Empty; }