demka/demofinish/Models/Product.cs

32 lines
810 B
C#
Raw Permalink Normal View History

2024-12-26 13:15:57 +00:00
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>();
}