14 lines
329 B
C#
14 lines
329 B
C#
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; }
|
|
}
|
|
}
|