oqtane.framework/Oqtane.Server/Repository/Interfaces/ILogRepository.cs
2020-04-03 17:18:33 -04:00

13 lines
298 B
C#

using System.Collections.Generic;
using Oqtane.Models;
namespace Oqtane.Repository.Interfaces
{
public interface ILogRepository
{
IEnumerable<Log> GetLogs(int siteId, string level, string function, int rows);
Log GetLog(int logId);
void AddLog(Log log);
}
}