using System; using System.Collections.Generic; namespace samusev_42; public partial class PickUpPoint { public int IdPickUpPoint { get; set; } public string? Adress { get; set; } public string Index { get; set; } = null!; public virtual ICollection Deliveries { get; set; } = new List(); }