mirror of https://github.com/Radarr/Radarr
24 lines
540 B
C#
24 lines
540 B
C#
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.MediaFiles.Commands
|
|
{
|
|
public class RenameSeasonCommand : Command
|
|
{
|
|
public int SeriesId { get; set; }
|
|
public int SeasonNumber { get; set; }
|
|
|
|
public override bool SendUpdatesToClient
|
|
{
|
|
get
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public RenameSeasonCommand(int seriesId, int seasonNumber)
|
|
{
|
|
SeriesId = seriesId;
|
|
SeasonNumber = seasonNumber;
|
|
}
|
|
}
|
|
} |