ChronoFlow/ChronoFlow.Model/User.cs

14 lines
385 B
C#

namespace ChronoFlow.Model
{
///<summary>
/// Repräsentiert einen Benutzer mit Benutzernamen, Passwort und Rolle.
/// </summary>
public class User
{
public string Username { get; set; }
public string Password { get; set; } //vorerst im Klartext, wird später geändert
public string Role { get; set; } //"Admin" oder "Mitarbeiter"
}
}