demoV/Voroncov2103/Models/MaterialCountHistory.cs

18 lines
366 B
C#
Raw Normal View History

2025-04-04 20:12:08 +00:00
using System;
using System.Collections.Generic;
namespace Voroncov2103.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!;
}