demo_trade/Models/Product.cs

26 lines
584 B
C#
Raw Permalink Normal View History

2024-10-04 12:41:04 +00:00
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; }
}
}