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;

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

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

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

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

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