Try your search with a different keyword or use * as a wildcard.
namespace Nop.Web.Models.Sitemap;
///
/// Represents an event that occurs when the sitemap is created
///
public partial class SitemapCreatedEvent
{
#region Ctor
public SitemapCreatedEvent(IList sitemapUrls)
{
SitemapUrls = sitemapUrls ?? new List();
}
#endregion
#region Properties
///
/// Gets a list of sitemap URLs
///
public IList SitemapUrls { get; }
#endregion
}