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; } }