mirror of
https://github.com/Readarr/Readarr
synced 2025-12-31 12:42:25 +01:00
11 lines
No EOL
210 B
C#
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();
|
|
}
|
|
} |