Webiant Logo Webiant Logo
  1. No results found.

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

SampleVendor.cs

namespace Nop.Services.Installation.SampleData;

/// 
/// Represents a sample vendor
/// 
public partial class SampleVendor
{
    /// 
    /// 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 admin comment
    /// 
    public string AdminComment { get; set; } = string.Empty;

    /// 
    /// Gets or sets a value indicating whether the entity is active
    /// 
    public bool Active { get; set; }

    /// 
    /// Gets or sets the display order
    /// 
    public int DisplayOrder { 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; }
}