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

36 lines
943 B
C#

using System;
using System.Collections.Generic;
namespace demofinish.Models;
public partial class Material
{
public int Id { get; set; }
public string Title { get; set; } = null!;
public int Countinpack { get; set; }
public string Unit { get; set; } = null!;
public decimal? Countinstock { get; set; }
public decimal Mincount { get; set; }
public string? Description { get; set; }
public decimal Cost { get; set; }
public string? Image { get; set; }
public int Materialtypeid { get; set; }
public virtual ICollection<Materialcounthistory> Materialcounthistories { get; set; } = new List<Materialcounthistory>();
public virtual Materialtype Materialtype { get; set; } = null!;
public virtual ICollection<Productmaterial> Productmaterials { get; set; } = new List<Productmaterial>();
public virtual ICollection<Supplier> Suppliers { get; set; } = new List<Supplier>();
}