bib_Talk_Chatprogramm/bibtalk/bib-talk/Business/User.cs

17 lines
512 B
C#
Raw Normal View History

2024-08-15 11:45:39 +02:00
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; }
}
}