new_demo/Models/LastEnter.cs

16 lines
296 B
C#
Raw Permalink Normal View History

2025-02-11 13:24:30 +00:00
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; }
}