demo2025_products_tiron_baby/Models/Material.cs

26 lines
523 B
C#
Raw Normal View History

2025-03-25 12:37:37 +00:00
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!;
}