23 lines
519 B
C#
23 lines
519 B
C#
namespace Nop.Core;
|
|
|
|
/// <summary>
|
|
/// Represents nopCommerce version
|
|
/// </summary>
|
|
public static class NopVersion
|
|
{
|
|
/// <summary>
|
|
/// Gets the major store version
|
|
/// </summary>
|
|
public const string CURRENT_VERSION = "4.80";
|
|
|
|
/// <summary>
|
|
/// Gets the minor store version
|
|
/// </summary>
|
|
public const string MINOR_VERSION = "9";
|
|
|
|
/// <summary>
|
|
/// Gets the full store version
|
|
/// </summary>
|
|
public const string FULL_VERSION = CURRENT_VERSION + "." + MINOR_VERSION;
|
|
}
|