a05b392aea
+ Klassen getrennt + Business Schicht abgeändert
20 lines
446 B
C#
20 lines
446 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace bib_talk.Business
|
|
{
|
|
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; }
|
|
}
|
|
}
|