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 = "3"; /// /// Gets the full store version /// public const string FULL_VERSION = CURRENT_VERSION + "." + MINOR_VERSION; }