using System; using System.Collections.Generic; namespace OOO_WriteAndClear.DBModels; public partial class PickupPoint { public int PickupPointId { get; set; } public string PickupPointAdress { get; set; } = null!; public virtual ICollection Orders { get; set; } = new List(); }