LSFE/LSFE.MobApp/Entities/Account/User.cs
2026-07-30 10:31:04 +08:00

27 lines
780 B
C#

using SQLite;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel;
using System.Runtime.CompilerServices;
namespace LSFE.MobApp.Entities.Account
{
[Table("Users")]
public class User : BaseEntity
{
public string? UserId { get; set; }
public string? UserName { get; set; }
public string? Password { get; set; }
public string? Email { get; set; }
public string? EmployeeId { get; set; }
public string? FullName { get; set; }
public string? Company { get; set; }
public string? PhoneNumber { get; set; }
public bool LockoutEnabled { get; set; }
public bool IsDeviceRegister { get; set; }
}
}