Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

SitemapCreatedEvent.cs

namespace Nop.Web.Models.Sitemap;

/// <summary>
/// Represents an event that occurs when the sitemap is created
/// </summary>
public partial class SitemapCreatedEvent
{
    #region Ctor

    public SitemapCreatedEvent(IList<SitemapUrlModel> sitemapUrls)
    {
        SitemapUrls = sitemapUrls ?? new List<SitemapUrlModel>();
    }

    #endregion

    #region Properties

    /// <summary>
    /// Gets a list of sitemap URLs
    /// </summary>
    public IList<SitemapUrlModel> SitemapUrls { get; }

    #endregion
}