2024-12-26 13:15:57 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace demofinish.Models;
|
|
|
|
|
|
|
|
|
|
public partial class Product
|
|
|
|
|
{
|
2025-03-25 18:36:42 +00:00
|
|
|
|
public int Id { get; set; }
|
2024-12-26 13:15:57 +00:00
|
|
|
|
|
2025-03-25 18:36:42 +00:00
|
|
|
|
public string Title { get; set; } = null!;
|
2024-12-26 13:15:57 +00:00
|
|
|
|
|
2025-03-25 18:36:42 +00:00
|
|
|
|
public int? Producttypeid { get; set; }
|
2024-12-26 13:15:57 +00:00
|
|
|
|
|
2025-03-25 18:36:42 +00:00
|
|
|
|
public string Articlenumber { get; set; } = null!;
|
2024-12-26 13:15:57 +00:00
|
|
|
|
|
2025-03-25 18:36:42 +00:00
|
|
|
|
public string? Description { get; set; }
|
2024-12-26 13:15:57 +00:00
|
|
|
|
|
2025-03-25 18:36:42 +00:00
|
|
|
|
public string? Image { get; set; }
|
2024-12-26 13:15:57 +00:00
|
|
|
|
|
2025-03-25 18:36:42 +00:00
|
|
|
|
public int? Productionpersoncount { get; set; }
|
2024-12-26 13:15:57 +00:00
|
|
|
|
|
2025-03-25 18:36:42 +00:00
|
|
|
|
public decimal Mincostforagent { get; set; }
|
2024-12-26 13:15:57 +00:00
|
|
|
|
|
2025-03-25 18:36:42 +00:00
|
|
|
|
public int? Productionworksshopnumber { get; set; }
|
2024-12-26 13:15:57 +00:00
|
|
|
|
}
|