demoV/Voroncov2103/Models/ProductMaterial.cs
Your Name a0aef6e93b aga
2025-04-04 23:12:08 +03:00

18 lines
377 B
C#

using System;
using System.Collections.Generic;
namespace Voroncov2103.Models;
public partial class ProductMaterial
{
public int ProductId { get; set; }
public int MaterialId { get; set; }
public double? Count { get; set; }
public virtual Material Material { get; set; } = null!;
public virtual Product Product { get; set; } = null!;
}