using LSFE.Infrastructure.Model; using LSFE.Infrastructure.Model.Admin; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LSFE.Infrastructure.Entities.Admin { [Table("UserDevices")] public class UserDevice { [Key] public int UserDeviceId { get; set; } public string? UserId { get; set; } public string? DeviceId { get; set; } public string? DeviceModel { get; set; } public string? DevicePlatform { get; set; } public string? DeviceManufacturer { get; set; } public string? DeviceVersion { get; set; } public string? AppVersion { get; set; } public bool IsAuthorized { get; set; } public bool IsActive { get; set; } public DateTime? DeactivatedDate { get; set; } public string? DeactivatedBy { get; set; } public string? DeactivationReason { get; set; } public DateTime RegisteredDate { get; set; } public string? RegisteredBy { get; set; } //public DateTime LastLoginDate { get; set; } public string? Notes { get; set; } } }