38 lines
1.0 KiB
C#
38 lines
1.0 KiB
C#
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<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; }
|
|
}
|