Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
namespace Nop.Web.Models.Sitemap;
/// <summary>
/// Represents sitemap URL model
/// </summary>
public partial record SitemapUrlModel : BaseNopModel
{
#region Ctor
/// <summary>
/// Initializes a new instance of the sitemap URL model
/// </summary>
/// <param name="location">URL of the page</param>
/// <param name="alternateLocations">List of the page urls</param>
/// <param name="frequency">Update frequency</param>
/// <param name="updatedOn">Updated on</param>
public SitemapUrlModel(string location, IList<string> alternateLocations, UpdateFrequency frequency, DateTime updatedOn)
{
Location = location;
AlternateLocations = alternateLocations ?? new List<string>();
UpdateFrequency = frequency;
UpdatedOn = updatedOn;
}
/// <summary>
/// Initializes a new instance of the sitemap URL model based on the passed model
/// </summary>
/// <param name="location">URL of the page</param>
/// <param name="sitemapUrl">The another sitemap url</param>
public SitemapUrlModel(string location, SitemapUrlModel sitemapUrl)
{
Location = location;
AlternateLocations = sitemapUrl.AlternateLocations;
UpdateFrequency = sitemapUrl.UpdateFrequency;
UpdatedOn = sitemapUrl.UpdatedOn;
}
#endregion
#region Properties
/// <summary>
/// Gets or sets URL of the page
/// </summary>
public string Location { get; set; }
/// <summary>
/// Gets or sets localized URLs of the page
/// </summary>
public IList<string> AlternateLocations { get; set; }
/// <summary>
/// Gets or sets a value indicating how frequently the page is likely to change
/// </summary>
public UpdateFrequency UpdateFrequency { get; set; }
/// <summary>
/// Gets or sets the date of last modification of the page
/// </summary>
public DateTime UpdatedOn { get; set; }
#endregion
}