mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-25 22:37:27 -04:00
738700537e
Currently uses Hard-Coded Naming Convention, Undecided on SAB or SB configuration style, SAB's is more robust (and flawless? -SP).
16 lines
328 B
C#
16 lines
328 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface IRenameProvider
|
|
{
|
|
void RenameAll();
|
|
void RenameSeries(int seriesId);
|
|
void RenameSeason(int seasonId);
|
|
void RenameEpisode(int episodeId);
|
|
}
|
|
}
|