using Nop.Core; namespace Nop.Plugin.Misc.NopCliGeneric { /// /// Represents plugin constants /// public static class NopCliGenericDefaults { /// /// Gets a name of the view component to embed tracking script on pages /// public const string TRACKING_VIEW_COMPONENT_NAME = "WidgetsNopCliGeneric"; /// /// Gets a plugin system name /// public static string SystemName => "Misc.NopCliGeneric"; /// /// Gets a plugin partner name /// public static string PartnerName => "NOPCOMMERCE"; /// /// Gets a user agent used to request NopCliGeneric services /// public static string UserAgent => $"nopCommerce-{NopVersion.CurrentVersion}"; } }