You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
570 B
19 lines
570 B
namespace Models
|
|
{
|
|
|
|
|
|
public class User
|
|
{
|
|
public int UserId { get; set; }
|
|
public string Username { get; set; }
|
|
public string Email { get; set; }
|
|
public string PasswordHash { get; set; }
|
|
public string Created { get; set; }
|
|
public string Updated { get; set; }
|
|
public DateTimeOffset PasswordUpdated { get; set; }
|
|
public int CompanyId { get; set; }
|
|
public DateTimeOffset LastLogin { get; set; }
|
|
public bool IsEnabled { get; set; }
|
|
public int FailedAttempts { get; set; }
|
|
}
|
|
}
|
|
|