structured logging
This commit is contained in:
11
Oqtane.Server/Repository/Interfaces/ILogRepository.cs
Normal file
11
Oqtane.Server/Repository/Interfaces/ILogRepository.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using Oqtane.Models;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Oqtane.Repository
|
||||
{
|
||||
public interface ILogRepository
|
||||
{
|
||||
void AddLog(Log Log);
|
||||
IEnumerable<Log> GetLogs(int SiteId);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user