using System.Threading.Tasks;
using UtopiaCanteenSystem.Models;
namespace UtopiaCanteenSystem.Services;
public interface IAdminAuditService
{
Task RecordLoginAsync(string username, string employeeId);
AdminLoginRecord? GetLastLogin();
}