16 lines
296 B
C#
16 lines
296 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace demo_hard.Models;
|
|||
|
|
|||
|
public partial class LastEnter
|
|||
|
{
|
|||
|
public int EmployeId { get; set; }
|
|||
|
|
|||
|
public DateTime EnterDatetime { get; set; }
|
|||
|
|
|||
|
public string EnterType { get; set; } = null!;
|
|||
|
|
|||
|
public string? Login { get; set; }
|
|||
|
}
|