18 lines
372 B
C#
18 lines
372 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace demko_v.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!;
|
|
}
|