16 lines
476 B
C#
16 lines
476 B
C#
namespace Wishlist.Data.DB
|
|
{
|
|
public class User
|
|
{
|
|
public int Id { get; set; }
|
|
public string? UserName { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? GivenName { get; set; }
|
|
public string? Surname { get; set; }
|
|
public string? Password { get; set; }
|
|
public string? Email { get; set; }
|
|
public string? ProjectRolesName { get; set; }
|
|
public LoginType LoginType { get; set; }
|
|
}
|
|
}
|