Agents/Models/Productcosthistory.cs

18 lines
343 B
C#
Raw Normal View History

2025-03-24 09:34:12 +00:00
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!;
}