using System; using System.Collections.Generic; namespace demko_term.Models; public partial class EmployeesHistory { public int Id { get; set; } public int? EmployeeId { get; set; } public DateTime? LastLogin { get; set; } public bool? SuccessLogin { get; set; } public virtual Employee? Employee { get; set; } }