mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-30 15:37:55 +02:00
Rename series added
This commit is contained in:
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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user