Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

OrderStatus.cs

namespace Nop.Core.Domain.Orders;

/// 
/// Represents an order status enumeration
/// 
public enum OrderStatus
{
    /// 
    /// Pending
    /// 
    Pending = 10,

    /// 
    /// Processing
    /// 
    Processing = 20,

    /// 
    /// Complete
    /// 
    Complete = 30,

    /// 
    /// Cancelled
    /// 
    Cancelled = 40
}