2013-08-28 02:51:54 +02:00
|
|
|
using System;
|
|
|
|
using NzbDrone.Common;
|
2013-07-19 07:23:04 +02:00
|
|
|
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; }
|
|
|
|
|
2013-08-28 02:51:54 +02:00
|
|
|
public String CommandId { get; set; }
|
|
|
|
|
|
|
|
public RenameSeasonCommand()
|
|
|
|
{
|
|
|
|
CommandId = HashUtil.GenerateCommandId();
|
|
|
|
}
|
|
|
|
|
2013-07-19 07:23:04 +02:00
|
|
|
public RenameSeasonCommand(int seriesId, int seasonNumber)
|
|
|
|
{
|
2013-08-28 02:51:54 +02:00
|
|
|
CommandId = HashUtil.GenerateCommandId();
|
2013-07-19 07:23:04 +02:00
|
|
|
SeriesId = seriesId;
|
|
|
|
SeasonNumber = seasonNumber;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|