1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-31 19:41:27 +00:00
Sonarr/NzbDrone.Core/Instrumentation/ILogProvider.cs

11 lines
No EOL
210 B
C#

using System.Collections.Generic;
using System.Linq;
namespace NzbDrone.Core.Instrumentation
{
public interface ILogProvider
{
IQueryable<Log> GetAllLogs();
void DeleteAll();
}
}