15 lines
425 B
C#
15 lines
425 B
C#
namespace UtopiaCanteenSystem.Models;
|
||
|
||
/// <summary>
|
||
/// Audit record of an admin login on this kiosk/device.
|
||
/// Passwords are NEVER stored here – only identity and timestamps.
|
||
/// </summary>
|
||
public class AdminLoginRecord
|
||
{
|
||
public int Id { get; set; }
|
||
public string Username { get; set; } = string.Empty;
|
||
public string EmployeeId { get; set; } = string.Empty;
|
||
public DateTime LoginTimeUtc { get; set; }
|
||
}
|
||
|