using System; using System.Collections.Generic; namespace Agents.Models; public partial class ProductDTO { 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 int? SalesCount { get; set; } = null; public int? ProductDiscount { get; set; } = null; 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; } }