16 lines
335 B
C#
16 lines
335 B
C#
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<Delivery> Deliveries { get; set; } = new List<Delivery>();
|
|
}
|