//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
//}