mirror of
https://github.com/Radarr/Radarr
synced 2024-12-29 11:25:26 +00:00
738700537e
Currently uses Hard-Coded Naming Convention, Undecided on SAB or SB configuration style, SAB's is more robust (and flawless? -SP).
15 lines
328 B
C#
15 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);
|
|
}
|
|
}
|