using Nop.Core.Domain.Common; using Nop.Core.Domain.Localization; using Nop.Core.Domain.Seo; namespace Nop.Core.Domain.Vendors; /// /// Represents a vendor /// public partial class Vendor : BaseEntity, ILocalizedEntity, ISlugSupported, ISoftDeletedEntity { /// /// Gets or sets the name /// public string Name { get; set; } /// /// Gets or sets the email /// public string Email { get; set; } /// /// Gets or sets the description /// public string Description { get; set; } /// /// Gets or sets the picture identifier /// public int PictureId { get; set; } /// /// Gets or sets the address identifier /// public int AddressId { get; set; } /// /// Gets or sets the admin comment /// public string AdminComment { get; set; } /// /// Gets or sets a value indicating whether the entity is active /// public bool Active { get; set; } /// /// Gets or sets a value indicating whether the entity has been deleted /// public bool Deleted { get; set; } /// /// Gets or sets the display order /// public int DisplayOrder { get; set; } /// /// Gets or sets the meta keywords /// public string MetaKeywords { get; set; } /// /// Gets or sets the meta description /// public string MetaDescription { get; set; } /// /// Gets or sets the meta title /// public string MetaTitle { get; set; } /// /// Gets or sets the page size /// public int PageSize { get; set; } /// /// Gets or sets a value indicating whether customers can select the page size /// public bool AllowCustomersToSelectPageSize { get; set; } /// /// Gets or sets the available customer selectable page size options /// public string PageSizeOptions { get; set; } /// /// Gets or sets a value indicating whether the price range filtering is enabled /// public bool PriceRangeFiltering { get; set; } /// /// Gets or sets the "from" price /// public decimal PriceFrom { get; set; } /// /// Gets or sets the "to" price /// public decimal PriceTo { get; set; } /// /// Gets or sets a value indicating whether the price range should be entered manually /// public bool ManuallyPriceRange { get; set; } }