26 lines
584 B
C#
26 lines
584 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace demo_trade.Models
|
|||
|
{
|
|||
|
public class Product
|
|||
|
{
|
|||
|
public string ArticleNumber { get; set; }
|
|||
|
public string Name { get; set; }
|
|||
|
|
|||
|
public string Description { get; set; }
|
|||
|
public decimal Cost { get; set; }
|
|||
|
|
|||
|
public short? DiscountAmount { get; set; }
|
|||
|
|
|||
|
public int? QuantityInStock { get; set; }
|
|||
|
|
|||
|
public int? ProductMaxDiscount { get; set; }
|
|||
|
|
|||
|
public Manufacturer Manufacturer { get; set; }
|
|||
|
}
|
|||
|
}
|