using System; using System.Collections.Generic; namespace ShoeShopMvc.Models; public partial class PickPoint { public string PickPointsId { get; set; } = null!; public string AddressPickpoints { get; set; } = null!; }