using Nop.Core;
namespace Nop.Plugin.Misc.AuctionPlugin;
///
/// Represents plugin constants
///
public static class AuctionDefaults
{
///
/// Gets the system name
///
public static string SystemName => "Misc.AuctionPlugin";
///
/// Gets the user agent used to request third-party services
///
public static string UserAgent => $"nopCommerce-{NopVersion.CURRENT_VERSION}";
///
/// Gets the configuration route name
///
public static string ConfigurationRouteName => "Plugin.Misc.AuctionPlugin.Configure";
///
/// Gets the name of autosuggest component
///
public static string ComponentName => "auction";
public static string AuctionAttributeName => "isAuctionItem";
}