using System; using System.Collections.Generic; namespace WebApi.Library.DBContext.DB.DBContext.AccountDB.Tables; public partial class TUser { public string CUserId { get; set; } = null!; public string CAuid { get; set; } = null!; public string CPasswordHashed { get; set; } = null!; public byte CState { get; set; } public DateTime CCreateDateTime { get; set; } public DateTime? CLastLoginDateTime { get; set; } }