14 lines
256 B
C#
14 lines
256 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!;
|
|||
|
}
|