//------------------------------------------------------------------------------
//
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
//
//------------------------------------------------------------------------------
namespace APICancelar.Entities
{
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
public partial class Product
{
public string ProductArticleNumber { get; set; }
public string ProductName { get; set; }
public decimal ProductCost { get; set; }
public Nullable ProductDiscountMax { get; set; }
public int IdManufacturer { get; set; }
public Nullable ProductDiscountAmount { get; set; }
public int ProductQuantityInStock { get; set; }
public string ProductDescription { get; set; }
[JsonIgnore]
public virtual Manufacturer Manufacturer { get; set; }
}
}