Webiant Logo Webiant Logo
  1. No results found.

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

ShippingStatus.cs

namespace Nop.Core.Domain.Shipping;

/// 
/// Represents the shipping status enumeration
/// 
public enum ShippingStatus
{
    /// 
    /// Shipping not required
    /// 
    ShippingNotRequired = 10,

    /// 
    /// Not yet shipped
    /// 
    NotYetShipped = 20,

    /// 
    /// Partially shipped
    /// 
    PartiallyShipped = 25,

    /// 
    /// Shipped
    /// 
    Shipped = 30,

    /// 
    /// Delivered
    /// 
    Delivered = 40
}