mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-02 21:24:56 +00:00
2871723bfe
Start of AddExisting.
16 lines
351 B
C#
16 lines
351 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);
|
|
}
|
|
}
|