demoV/Voroncov2103/Models/ProductCostHistory.cs

18 lines
361 B
C#
Raw Permalink Normal View History

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