demo_trade/Data/RemoteData/Entity/PickupPoint.cs

14 lines
309 B
C#
Raw Permalink Normal View History

2024-10-04 12:41:04 +00:00
using System;
using System.Collections.Generic;
namespace demo_trade.Data.RemoteData.Entity;
public partial class PickupPoint
{
public int PickupPointId { get; set; }
public string? PickupPointName { get; set; }
public virtual ICollection<Order> Orders { get; set; } = new List<Order>();
}