Agents/Models/Productcosthistory.cs
2025-03-24 12:34:12 +03:00

18 lines
343 B
C#

using System;
using System.Collections.Generic;
namespace Agents.Models;
public partial class Productcosthistory
{
public int Id { get; set; }
public int Productid { get; set; }
public DateTime Changedate { get; set; }
public decimal Costvalue { get; set; }
public virtual Product Product { get; set; } = null!;
}