Entwicklung_BLAZOR/Test Rüdiger/DBTest/DB/Artikel.cs
Rüdiger Vossel 1a7073fce9 DBTest
2025-09-26 15:57:51 +02:00

20 lines
469 B
C#

using System.Reflection.Emit;
using System.ComponentModel.DataAnnotations;
namespace DBTest.DB
{
public class Artikel
{
[Key]
public string Key { get; set; }
[Required]
public string ArtikelNummer { get; set; }
[Required]
public string Variante { get; set; }
public string Bezeichnung { get; set; }
public string Barcode{ get; set; }
public string Mengeneinheit { get; set; }
}
}