mirror of
https://github.com/hargata/lubelog.git
synced 2026-02-03 17:53:02 -06:00
13 lines
411 B
C#
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);
|
|
}
|
|
} |