Webiant Logo Webiant Logo
  1. No results found.

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

ShippingMethod.cs

using Nop.Core.Domain.Localization;

namespace Nop.Core.Domain.Shipping;

/// 
/// Represents a shipping method (used by offline shipping rate computation methods)
/// 
public partial class ShippingMethod : BaseEntity, ILocalizedEntity
{
    /// 
    /// Gets or sets the name
    /// 
    public string Name { get; set; }

    /// 
    /// Gets or sets the description
    /// 
    public string Description { get; set; }

    /// 
    /// Gets or sets the display order
    /// 
    public int DisplayOrder { get; set; }
}