Timofeev_pz8/shoe_store/Models/PickupPoint.cs

20 lines
418 B
C#

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<Order> Orders { get; set; } = new List<Order>();
}