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

34 lines
927 B
C#

using System;
using System.Collections.Generic;
namespace Agents.Models;
public partial class Product
{
public int Id { get; set; }
public string Title { get; set; } = null!;
public int? Producttypeid { get; set; }
public string Articlenumber { get; set; } = null!;
public string? Description { get; set; }
public string? Image { get; set; }
public int? Productionpersoncount { get; set; }
public int? Productionworkshopnumber { get; set; }
public decimal Mincostforagent { get; set; }
public virtual ICollection<Productcosthistory> Productcosthistories { get; set; } = new List<Productcosthistory>();
public virtual ICollection<Productmaterial> Productmaterials { get; set; } = new List<Productmaterial>();
public virtual ICollection<Productsale> Productsales { get; set; } = new List<Productsale>();
public virtual Producttype? Producttype { get; set; }
}