oqtane.framework/Oqtane.Server/Repository/Interfaces/ILogRepository.cs
2019-10-23 10:13:58 -04:00

13 lines
270 B
C#

using Oqtane.Models;
using System.Collections.Generic;
namespace Oqtane.Repository
{
public interface ILogRepository
{
IEnumerable<Log> GetLogs(int SiteId, string Level, int Rows);
Log GetLog(int LogId);
void AddLog(Log Log);
}
}