using System; using System.Collections.Generic; namespace OOO_WriteAndClear.DBModels; public partial class OrderProduct { public int OrderId { get; set; } public string ProductArticleNumber { get; set; } = null!; public int ProductAmount { get; set; } public virtual Order Order { get; set; } = null!; public virtual Product ProductArticleNumberNavigation { get; set; } = null!; }