new_demo/Models/LastEnter.cs
2025-02-11 16:24:30 +03:00

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