namespace bib_talk.Business { // 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 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; } } }