webCrawlerGoogle/Grosshandel2/Grosshandel2/Artikel.cs
Christopher Meinhold 8604066f77 Push
2024-09-15 21:43:55 +02:00

12 lines
290 B
C#

namespace Grosshandel2
{
public class Artikel
{
public int ArtikelId { get; set; }
public string Name { get; set; }
public decimal Preis { get; set; }
public decimal Grosshandelspreis { get; set; }
public byte[] Bild { get; set; }
}
}