mirror of https://github.com/Sonarr/Sonarr
16 lines
407 B
C#
16 lines
407 B
C#
|
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;
|
||
|
}
|
||
|
}
|
||
|
}
|