demo2025_products_tiron_baby/Models/Material.cs
Your Name 4ba7d31e91 demo
2025-03-25 15:37:37 +03:00

26 lines
523 B
C#

using System;
using System.Collections.Generic;
namespace tiron_demo.Models;
public partial class Material
{
public int Id { get; set; }
public string Name { get; set; } = null!;
public int Type { get; set; }
public int AmountPerPackage { get; set; }
public string MeasureUnit { get; set; } = null!;
public float Cost { get; set; }
public int StorageAmount { get; set; }
public int MinAmount { get; set; }
public virtual MaterialType TypeNavigation { get; set; } = null!;
}