demka/demofinish/Models/Product.cs
2024-12-26 16:15:57 +03:00

32 lines
810 B
C#

using System;
using System.Collections.Generic;
namespace demofinish.Models;
public partial class Product
{
public string Productarticlenumber { get; set; } = null!;
public string Productname { get; set; } = null!;
public string Productdescription { get; set; } = null!;
public string Productcategory { get; set; } = null!;
public string? Productphoto { get; set; }
public string Productmanufacturer { get; set; } = null!;
public decimal Productcost { get; set; }
public short? Productdiscountamount { get; set; }
public int Productquantityinstock { get; set; }
public string? Productstatus { get; set; }
public decimal? Discountmax { get; set; }
public virtual ICollection<OrderProduct> OrderProducts { get; set; } = new List<OrderProduct>();
}