18 lines
354 B
C#
18 lines
354 B
C#
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; }
|
|
}
|