using Nop.Core; namespace Nop.Plugin.Pickup.PickupInStore.Domain; /// /// Represents a pickup point of store /// public class StorePickupPoint : BaseEntity { /// /// Gets or sets a name /// public string Name { get; set; } /// /// Gets or sets a description /// public string Description { get; set; } /// /// Gets or sets an address identifier /// public int AddressId { 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 a display order /// public int DisplayOrder { get; set; } /// /// Gets or sets a store identifier /// public int StoreId { 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 transit days /// public int? TransitDays { get; set; } }