demka/demofinish/Models/Materialcounthistory.cs

18 lines
353 B
C#
Raw Normal View History

2025-03-25 18:36:42 +00:00
using System;
using System.Collections.Generic;
namespace demofinish.Models;
public partial class Materialcounthistory
{
public int Id { get; set; }
public int Materialid { get; set; }
public DateTime Changedate { get; set; }
public decimal Countvalue { get; set; }
public virtual Material Material { get; set; } = null!;
}