Try your search with a different keyword or use * as a wildcard.
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
}