10 lines
234 B
C#
10 lines
234 B
C#
namespace timetracker.Shared;
|
|
|
|
public class User
|
|
{
|
|
public int Id { get; set; }
|
|
public string Username { get; set; } = "";
|
|
public string PasswordHash { get; set; } = "";
|
|
public string PasswordSalt { get; set; } = "";
|
|
}
|