namespace Nop.Core;
///
/// Represents nopCommerce version
///
public static class NopVersion
{
///
/// Gets the major store version
///
public const string CURRENT_VERSION = "4.80";
///
/// Gets the minor store version
///
public const string MINOR_VERSION = "9";
///
/// Gets the full store version
///
public const string FULL_VERSION = CURRENT_VERSION + "." + MINOR_VERSION;
}