20 lines
469 B
C#
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; }
|
|
}
|
|
}
|