Webiant Logo Webiant Logo
  1. No results found.

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

UrlRecord.cs

namespace Nop.Core.Domain.Seo;

/// <summary>
/// Represents an URL record
/// </summary>
public partial class UrlRecord : BaseEntity
{
    /// <summary>
    /// Gets or sets the entity identifier
    /// </summary>
    public int EntityId { get; set; }

    /// <summary>
    /// Gets or sets the entity name
    /// </summary>
    public string EntityName { get; set; }

    /// <summary>
    /// Gets or sets the slug
    /// </summary>
    public string Slug { get; set; }

    /// <summary>
    /// Gets or sets the value indicating whether the record is active
    /// </summary>
    public bool IsActive { get; set; }

    /// <summary>
    /// Gets or sets the language identifier
    /// </summary>
    public int LanguageId { get; set; }
}