mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 18:57:39 -07:00
Rename series added
This commit is contained in:
parent
c6d82bf98b
commit
637b101975
13 changed files with 233 additions and 19 deletions
16
NzbDrone.Core/MediaFiles/Commands/RenameSeasonCommand.cs
Normal file
16
NzbDrone.Core/MediaFiles/Commands/RenameSeasonCommand.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
using NzbDrone.Common.Messaging;
|
||||
|
||||
namespace NzbDrone.Core.MediaFiles.Commands
|
||||
{
|
||||
public class RenameSeasonCommand : ICommand
|
||||
{
|
||||
public int SeriesId { get; private set; }
|
||||
public int SeasonNumber { get; private set; }
|
||||
|
||||
public RenameSeasonCommand(int seriesId, int seasonNumber)
|
||||
{
|
||||
SeriesId = seriesId;
|
||||
SeasonNumber = seasonNumber;
|
||||
}
|
||||
}
|
||||
}
|
14
NzbDrone.Core/MediaFiles/Commands/RenameSeriesCommand.cs
Normal file
14
NzbDrone.Core/MediaFiles/Commands/RenameSeriesCommand.cs
Normal file
|
@ -0,0 +1,14 @@
|
|||
using NzbDrone.Common.Messaging;
|
||||
|
||||
namespace NzbDrone.Core.MediaFiles.Commands
|
||||
{
|
||||
public class RenameSeriesCommand : ICommand
|
||||
{
|
||||
public int SeriesId { get; private set; }
|
||||
|
||||
public RenameSeriesCommand(int seriesId)
|
||||
{
|
||||
SeriesId = seriesId;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue