namespace Nop.Core.Domain.Shipping; /// /// Pickup point /// public partial class PickupPoint { /// /// Gets or sets an identifier /// public string Id { get; set; } /// /// Gets or sets a name /// public string Name { get; set; } /// /// Gets or sets a description /// public string Description { get; set; } /// /// Gets or sets a system name of the pickup point provider /// public string ProviderSystemName { get; set; } /// /// Gets or sets an address /// public string Address { get; set; } /// /// Gets or sets a city /// public string City { get; set; } /// /// Gets or sets a county /// public string County { get; set; } /// /// Gets or sets a state abbreviation /// public string StateAbbreviation { get; set; } /// /// Gets or sets a two-letter ISO country code /// public string CountryCode { get; set; } /// /// Gets or sets a zip postal code /// public string ZipPostalCode { get; set; } /// /// Gets or sets a latitude /// public decimal? Latitude { get; set; } /// /// Gets or sets a longitude /// public decimal? Longitude { get; set; } /// /// Gets or sets a fee for the pickup /// public decimal PickupFee { get; set; } /// /// Gets or sets an opening hours /// public string OpeningHours { get; set; } /// /// Gets or sets the display order /// public int DisplayOrder { get; set; } /// /// Gets or sets a transit days /// public int? TransitDays { get; set; } }