| 123456789101112131415161718192021222324252627282930 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // 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.
- // </auto-generated>
- //------------------------------------------------------------------------------
- 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<byte> ProductDiscountMax { get; set; }
- public int IdManufacturer { get; set; }
- public Nullable<byte> ProductDiscountAmount { get; set; }
- public int ProductQuantityInStock { get; set; }
- public string ProductDescription { get; set; }
- [JsonIgnore]
- public virtual Manufacturer Manufacturer { get; set; }
- }
- }
|