demka/demofinish/Models/Productmaterial.cs
2025-03-25 21:36:42 +03:00

16 lines
305 B
C#

using System;
using System.Collections.Generic;
namespace demofinish.Models;
public partial class Productmaterial
{
public int Productid { get; set; }
public int Materialid { get; set; }
public decimal? Count { get; set; }
public virtual Material Material { get; set; } = null!;
}