lubelog/External/Interfaces/IApiKeyRecordDataAccess.cs
DESKTOP-T0O5CDB\DESK-555BD 8151747b66 apiKey stuff
2026-01-23 22:13:06 -07:00

13 lines
411 B
C#

using CarCareTracker.Models;
namespace CarCareTracker.External.Interfaces
{
public interface IApiKeyRecordDataAccess
{
public List<APIKey> GetAPIKeyRecordsByUserId(int userId);
public APIKey GetAPIKeyById(int apiKeyId);
public APIKey GetAPIKeyByKey(string hashedKey);
public bool CreateNewAPIKey(APIKey apiKey);
public bool DeleteAPIKey(int apiKeyId);
}
}