2013-09-11 06:33:47 +00:00
|
|
|
using NzbDrone.Core.Messaging.Commands;
|
2013-07-19 05:23:04 +00:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.MediaFiles.Commands
|
|
|
|
{
|
2013-09-11 06:33:47 +00:00
|
|
|
public class RenameSeasonCommand : Command
|
2013-07-19 05:23:04 +00:00
|
|
|
{
|
2013-08-31 03:08:19 +00:00
|
|
|
public int SeriesId { get; set; }
|
|
|
|
public int SeasonNumber { get; set; }
|
2013-07-19 05:23:04 +00:00
|
|
|
|
2013-09-11 06:33:47 +00:00
|
|
|
public override bool SendUpdatesToClient
|
2013-08-28 00:51:54 +00:00
|
|
|
{
|
2013-09-11 06:33:47 +00:00
|
|
|
get
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2013-08-28 00:51:54 +00:00
|
|
|
}
|
|
|
|
|
2013-07-19 05:23:04 +00:00
|
|
|
public RenameSeasonCommand(int seriesId, int seasonNumber)
|
|
|
|
{
|
|
|
|
SeriesId = seriesId;
|
|
|
|
SeasonNumber = seasonNumber;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|