Utopia-Canteen-System/Services/IAdminAuditService.cs

12 lines
248 B
C#

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