24 lines
536 B
C#
24 lines
536 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace FahrzeugProjekt
|
|
{
|
|
public class Arbeiter
|
|
{
|
|
[Column("ArbeiterID")]
|
|
public int ArbeiterID { get; set; }
|
|
|
|
[Column("Vorname")]
|
|
public string Vorname { get; set; }
|
|
|
|
[Column("Nachname")]
|
|
public string Nachname { get; set; }
|
|
|
|
[Column("Email")]
|
|
public string Email { get; set; }
|
|
|
|
[Column("Passwort")]
|
|
public string Passwort { get; set; }
|
|
}
|
|
}
|