Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core;
///
/// Represents nopCommerce version
///
public static class NopVersion
{
///
/// Gets the major store version
///
public const string CURRENT_VERSION = "4.70";
///
/// Gets the minor store version
///
public const string MINOR_VERSION = "0";
///
/// Gets the full store version
///
public const string FULL_VERSION = CURRENT_VERSION + "." + MINOR_VERSION;
}