2024-08-15 11:45:39 +02:00
|
|
|
|
namespace bib_talk.Business
|
2024-08-14 14:31:45 +02:00
|
|
|
|
{
|
2024-08-28 13:53:39 +02:00
|
|
|
|
// User Klasse mit den Eigenschaften Id, Username, Password,
|
|
|
|
|
// Email, Birthday, IsOnline und ProfileImagePath
|
|
|
|
|
// um diese in der App zu Benutzen und in der Datenbank zu speichern
|
2024-08-14 14:31:45 +02:00
|
|
|
|
public class User
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string Username { get; set; }
|
|
|
|
|
public string Password { get; set; }
|
|
|
|
|
public string Email { get; set; }
|
|
|
|
|
public string Birthday { get; set; }
|
|
|
|
|
public string IsOnline { get; set; }
|
|
|
|
|
public string ProfileImagePath { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|