18 lines
353 B
C#
18 lines
353 B
C#
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!;
|
|
}
|