26 lines
523 B
C#
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!;
|
|
}
|