demo_hard/Model/LastEnter.cs
2025-02-11 16:17:16 +03:00

16 lines
295 B
C#

using System;
using System.Collections.Generic;
namespace demo_hard.Model;
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; }
}