demka/demofinish/Model/Productcosthistory.cs
2025-04-03 23:00:11 +03:00

16 lines
287 B
C#

using System;
using System.Collections.Generic;
namespace demofinish.Model;
public partial class Productcosthistory
{
public int Id { get; set; }
public int Productid { get; set; }
public DateTime Changedate { get; set; }
public decimal Costvalue { get; set; }
}