mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
5a8842e3db
AddNew, currently unable to submit. Bi-polar
18 lines
394 B
C#
18 lines
394 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using NzbDrone.Core.Repository;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface IRootDirProvider
|
|
{
|
|
List<RootDir> GetAll();
|
|
void Add(RootDir rootDir);
|
|
void Remove(int rootDirId);
|
|
void Update(RootDir rootDir);
|
|
RootDir GetRootDir(int rootDirId);
|
|
}
|
|
}
|