NikivorovaMV/Models/Material.cs

22 lines
466 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
namespace NikiforovaMV.Models;
public partial class Material
{
public int Id { get; set; }
public string Name { get; set; } = null!;
public string Type { get; set; } = null!;
public string Package { get; set; } = null!;
public string Unitofmeasurement { get; set; } = null!;
public string Remainingstock { get; set; } = null!;
public string MinimumStock { get; set; } = null!;
}