namespace Nop.Core.Rss; /// /// Represents default values related to RSS feed /// public static partial class NopRssDefaults { /// /// Gets default name for Title element /// public static string Title => "title"; /// /// Gets default name for Content element /// public static string Content => "content"; /// /// Gets default name for Description element /// public static string Description => "description"; /// /// Gets default name for Link element /// public static string Link => "link"; /// /// Gets default name for PubDate element /// public static string PubDate => "pubDate"; /// /// Gets default name for Guid element /// public static string Guid => "guid"; /// /// Gets default name for Guid element /// public static string Item => "item"; /// /// Gets default name for LastBuildDate element /// public static string LastBuildDate => "lastBuildDate"; /// /// Gets default name for Channel element /// public static string Channel => "channel"; /// /// Gets default name for RSS element /// public static string RSS => "rss"; }