mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-31 03:50:08 -07:00
A lot of clean up and added a new Image api #865
This commit is contained in:
parent
69d75976c5
commit
1eb18b3187
32 changed files with 454 additions and 61 deletions
11
src/Ombi.Store/Repository/IAuditRepository.cs
Normal file
11
src/Ombi.Store/Repository/IAuditRepository.cs
Normal file
|
@ -0,0 +1,11 @@
|
|||
using System.Threading.Tasks;
|
||||
using Ombi.Store.Entities;
|
||||
|
||||
namespace Ombi.Store.Repository
|
||||
{
|
||||
public interface IAuditRepository
|
||||
{
|
||||
Task Record(AuditType type, AuditArea area, string description);
|
||||
Task Record(AuditType type, AuditArea area, string description, string user);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue