32 lines
820 B
C#
32 lines
820 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Demo3.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 decimal? Productdiscountamount { get; set; }
|
|
|
|
public int Productquantityinstock { get; set; }
|
|
|
|
public string? Productstatus { get; set; }
|
|
|
|
public decimal? Productdiscountamountmax { get; set; }
|
|
|
|
public virtual ICollection<OrderProduct> OrderProducts { get; set; } = new List<OrderProduct>();
|
|
}
|