demo_hard/Models/LastEnter.cs
2025-02-05 13:11:36 +03:00

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!;
}