parent
c6d82bf98b
commit
637b101975
@ -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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -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…
Reference in new issue