using System; using System.Collections.Generic; namespace shoe_store.Models; public partial class PickupPoint { public int IdpickupPoints { get; set; } public int Index { get; set; } public string Street { get; set; } = null!; public string City { get; set; } = null!; public int HouseNumber { get; set; } public virtual ICollection Orders { get; set; } = new List(); }