18 lines
361 B
C#
18 lines
361 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace demko_v.Models;
|
|||
|
|
|||
|
public partial class MaterialCountHistory
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public int MaterialId { get; set; }
|
|||
|
|
|||
|
public DateTime ChangeDate { get; set; }
|
|||
|
|
|||
|
public double CountValue { get; set; }
|
|||
|
|
|||
|
public virtual Material Material { get; set; } = null!;
|
|||
|
}
|