using Nop.Core.Domain.Localization; namespace Nop.Core.Domain.Shipping; /// /// Represents a product availability range /// public partial class ProductAvailabilityRange : BaseEntity, ILocalizedEntity { /// /// Gets or sets the name /// public string Name { get; set; } /// /// Gets or sets the display order /// public int DisplayOrder { get; set; } }