Utopia-Canteen-System/Models/AdminLoginRecord.cs

15 lines
425 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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