26 lines
700 B
C#
26 lines
700 B
C#
namespace ChronoFlow.Model
|
|
{
|
|
public class User
|
|
{
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
public string Role { get; set; }
|
|
public string Mitarbeiternummer { get; set; }
|
|
public string Abteilung { get; set; }
|
|
|
|
public int Id { get; set; }
|
|
public string OriginalUsername { get; set; } // wichtig für Updates
|
|
|
|
public bool MussPasswortAendern { get; set; }
|
|
|
|
public User()
|
|
{
|
|
Username = "";
|
|
Password = "";
|
|
Role = "";
|
|
Mitarbeiternummer = "";
|
|
Abteilung = "";
|
|
OriginalUsername = "";
|
|
}
|
|
}
|
|
} |