|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace Biskilog_Cloud.Shared.Models;
|
|
|
|
|
|
|
|
public partial class TblUser
|
|
|
|
{
|
|
|
|
public string Username { get; set; } = null!;
|
|
|
|
|
|
|
|
public string? Password { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
public string? Firstname { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
public string? Surname { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
public string? StreetAddress1 { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
public string? StreetAddress2 { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
public string? City { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
public string? StateOrProvince { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
public string? Telephone { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
public string? Email { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
public string? AccessLevel { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
public DateTime? LastLogin { get; set; } = new DateTime(2000, 01, 01);
|
|
|
|
|
|
|
|
public string? BranchId { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
public DateTime LastModified { get; set; }
|
|
|
|
}
|