36 lines
930 B
C#
36 lines
930 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Agents.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 double? Countinstock { get; set; }
|
|||
|
|
|||
|
public double 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; }
|
|||
|
|
|||
|
public virtual ICollection<Productmaterial> Productmaterials { get; set; } = new List<Productmaterial>();
|
|||
|
|
|||
|
public virtual ICollection<Supplier> Suppliers { get; set; } = new List<Supplier>();
|
|||
|
}
|