20 lines
449 B
C#
20 lines
449 B
C#
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; }
|
|
}
|