27 lines
432 B
C#
27 lines
432 B
C#
namespace Nop.Core.Domain.Orders;
|
|
|
|
/// <summary>
|
|
/// Represents an order status enumeration
|
|
/// </summary>
|
|
public enum OrderStatus
|
|
{
|
|
/// <summary>
|
|
/// Pending
|
|
/// </summary>
|
|
Pending = 10,
|
|
|
|
/// <summary>
|
|
/// Processing
|
|
/// </summary>
|
|
Processing = 20,
|
|
|
|
/// <summary>
|
|
/// Complete
|
|
/// </summary>
|
|
Complete = 30,
|
|
|
|
/// <summary>
|
|
/// Cancelled
|
|
/// </summary>
|
|
Cancelled = 40
|
|
} |