using System; using System.Collections.Generic; namespace demko_v.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 ProductCostHistories { get; set; } = new List(); public virtual ICollection ProductMaterials { get; set; } = new List(); public virtual ICollection ProductSales { get; set; } = new List(); public virtual ProductType? ProductType { get; set; } }