mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
11 lines
No EOL
305 B
C#
11 lines
No EOL
305 B
C#
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);
|
|
}
|
|
} |